JQuery Programmer Question:

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

Download JQuery Programmer PDF Read All 201 JQuery Programmer Questions
Previous QuestionNext Question
Explain what is the use of jQuery.data()?What is difference between $(this) and 'this' in jQuery?