jQuery Mobile Question:
Tell me what does dollar sign ($) means in jQuery?
Answer:
Dollar Sign is nothing but it's an alias for JQuery. Take a look at below jQuery code.
► $(document).ready(function(){});
Over here $ sign can be replaced with "jQuery" keyword.
► jQuery(document).ready(function(){});
► $(document).ready(function(){});
Over here $ sign can be replaced with "jQuery" keyword.
► jQuery(document).ready(function(){});
Previous Question | Next Question |
Explain the starting point of code execution in jQuery? | Tell me can we have multiple document.ready() function on the same page? |