What does dollar sign ($) means in jQuery?
Answer / chaitanya
Dollar Sign is nothing but it's an alias for JQuery. Take a look at below jQuery code.
Hide Copy Code
$(document).ready(function(){
});
Over here $ sign can be replaced with "jQuery" keyword.
Hide Copy Code
jQuery(document).ready(function(){
});
| Is This Answer Correct ? | 0 Yes | 0 No |
Please explain remove class jquery with example?
How can we add change font size using jquery?
Describe the two types of cdns?
How to redirect to another page using jquery?
What is the difference between size and length of jQuery?
How to search for descendant elements that match the specified selectors using ?
Define data paremeter of jquery ajax method?
Explain .bind() vs .live() vs .delegate() vs .on()
How to programmatically trigger a click event that's being handled by jquery?
Can we have multiple document.ready() function on the same page?
Jquery can be used in what scenarios?
What is jQuery UI?