jQuery Mobile Question:

Tell me what does dollar sign ($) means in jQuery?

jQuery Mobile Interview Question
jQuery Mobile Interview Question

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(){});


Previous QuestionNext Question
Explain the starting point of code execution in jQuery?Tell me can we have multiple document.ready() function on the same page?