Creative UI/UX Designers Question:
Download Job Interview Questions and Answers PDF
Explain dollar Sign ($) means in JQuery?
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(){
});
$(document).ready(function(){
});
Over here $ sign can be replaced with "jQuery " keyword.
jQuery(document).ready(function(){
});
Download Creative User Interface UX Interview Questions And Answers
PDF
Previous Question | Next Question |
How to apply css in odd childs of parent node using JQuery library? | How body onload() function is different from document.ready() function used in jQuery? |