What does dollar sign ($) means in jQuery?
Answer / chaitanya
Dollar Sign is nothing but it's an alias for JQuery. Take a look at below jQuery code.
Hide Copy Code
$(document).ready(function(){
});
Over here $ sign can be replaced with "jQuery" keyword.
Hide Copy Code
jQuery(document).ready(function(){
});
| Is This Answer Correct ? | 0 Yes | 0 No |
How to Use the jQuery load() Method?
How to use migrate jQuery plugin?
How to set jquery mobile responsive table width to 100% width despite css styles? : jquery mobile
Explain the difference between parent() and parents() methods in jquery? : jquery mobile
Explain the difference between jquery.size() and jquery.length?
How do you update ajax response with id " resilts"?
What is jquery.holdready() function?
Define width() vs css('width')?
What is the difference between event.PreventDefault and "return false"?
What is the use of the animate() method in jquery?
Whether C# code behind can be called from jQuery?
Is jquery code exicuted on the clientside, or serverside?