Google News
logo
jQuery - Interview Questions
What does dollar sign ($) means in jQuery ?
Dollar Sign is nothing but it's an alias for JQuery. Take a look at below jQuery code.

$(document).ready(function(){
  //script-content
});

Over here $ sign can be replaced with "jQuery" keyword.

jQuery(document).ready(function(){
  //script-content
});
Advertisement