What does dollar Sign ($) means in JQuery?

 Posted by Virendradugar on 11/21/2009 | Category: jQuery Interview questions | Views: 84695
Answer:

Dollar Sign is nothing but it's an alias for JQuery. Take a look at below jQuery code

$(document).ready(function(){

});


Over here $ sign can be replaced with "jQuery " keyword.
jQuery(document).ready(function(){

});


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Posted by: Susanthampy on: 4/27/2011 | Points: 10
$ sign represents Jquery.
Posted by: Virendradugar on: 4/27/2011 | Points: 10
That is what I have mentioned. :)
"$ sign can be replaced with "jQuery " keyword." which means it alias for jQuery keyword.

Posted by: Susanthampy on: 4/27/2011 | Points: 10
ok friend

Login to post response