jQuery Mobile Question:
Download Questions PDF

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

Download jQuery Mobile Interview Questions And Answers PDF

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?