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 |
What does dollar sign ($) means in jQuery?
What does the jQuery migrate function do?
What is eq()? : jquery mobile
What are the methods used to provide effects in jquery?
What are the effects methods used in jquery?
How is the deferred method in jquery important in relation to animate method?
How can you apply a style on an element using jQuery?
Why we need jquery?
Where can we download JQuery?
How to validate phone number using jquery?
What is the difference between calling stop(true,true) and finish method?
What are the four parameters used for jQuery Ajax method?