What does dollar sign ($) means in jQuery?

Technology CommunityCategory: jQueryWhat does dollar sign ($) means in jQuery?
VietMX Staff asked 3 years ago

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(){
});