jQuery Mobile Question:

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

Tweet Share WhatsApp

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

Read All 77 jQuery Mobile Questions
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?