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
Define the script build up by jquery?
What are jquery selectors?
Is jquery library used for server scripting or client scripting?
Mention the advantages of cdn? : jQuery Mobile
what is the use of param() method in jquery .
How to use css() in jquery?
Differentiate between jquery.size and jquery.length? : jQuery Mobile
How We Can Write Code Specific To Browser In Jquery?
What is the use of jQuery.ajax method ()?
Is jQuery is a client or server scripting?
What does $("P") will select?
What is eq()? : jquery mobile
Difference between find() and closest() in jquery?
Tell me how to check data type of any variable in jquery? : jquery mobile
What is a dom in jquery? How can we make sure that dom is ready?