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

How to add or remove classes to an element in jquery?

0 Answers  


How can I select 20th div with jquery?

0 Answers  


What is the use of toggle() method in jquery?

0 Answers  


How to use jquery.connect?

0 Answers  


What is the difference between find and children methods?

0 Answers  






Mention the advantages of cdn? : jQuery Mobile

0 Answers  


What are selectors in jquery mean ?

0 Answers  


How we can apply css in multiple selectors in jquery?

0 Answers  


Does jQuery 2.0 supports IE?

3 Answers  


Do we need to add the jquery file both at the master page and content page as well?

0 Answers  


What are all the ways to include jQuery in a page?

0 Answers  


Which one is more efficient, document.getElementbyId( "myId") or $("#myId)?

0 Answers  


Categories