Answer Posted / 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 |
Post New Answer View All Answers
How to select all elements using jQuery?
How to resolve conflicts with other libraries?
Explain .on()? : jquery mobile
How can you get the type of arguments passed to a function?
What is the use of jquery.data()?
Explain some benefits of jquery knockout?
What are the effects methods used in jquery?
Tell me is jquery a w3c standard? : jquery mobile
What is the difference between $.map and $.grep in jQuery?
What is parent() in jquery?
What is the difference between javascript and jquery?
How to use connect in jquery?
What is the advantage of using minimized version of jQuery?
Define jquery $.ajax() method?
How can jquery be used in conjunction with another javascript library that also uses $ for naming?