What does dollar sign ($) means in jQuery?



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

Post New Answer

More jQuery Interview Questions

Is it possible that jquery html work for both html and xml document?

0 Answers  


What is a jquery ?

0 Answers  


How do you get the text value of a selected option?

0 Answers  


How to create, read and delete cookies with jquery?

0 Answers  


What are the various ajax functions available in jquery ?

0 Answers  






What does $("P") will select?

0 Answers  


What is the difference between javascript and jquery?

0 Answers  


What is the slowest selector in jQuery?

0 Answers  


How to increase cursor size in html body using jquery?

0 Answers  


Which is the fastest selector in jQuery?

0 Answers  


Is it possible to use jquery to make ajax request? : jquery mobile

0 Answers  


What is jquery selectors? Give some examples.

0 Answers  


Categories