JQuery UI Question:

Download Job Interview Questions and Answers PDF

What does dollar Sign ($) means in JQuery?

JQuery User Interface Interview Question
JQuery User Interface Interview Question

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

Download JQuery User Interface Interview Questions And Answers PDF

Previous QuestionNext Question
How can we apply css in odd childs of parent node using JQuery library?How is body onload() function is different from document.ready() function used in jQuery?