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 |
Is it possible that jquery html work for both html and xml document?
What is a jquery ?
How do you get the text value of a selected option?
How to create, read and delete cookies with jquery?
What are the various ajax functions available in jquery ?
What does $("P") will select?
What is the difference between javascript and jquery?
What is the slowest selector in jQuery?
How to increase cursor size in html body using jquery?
Which is the fastest selector in jQuery?
Is it possible to use jquery to make ajax request? : jquery mobile
What is jquery selectors? Give some examples.