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 |
Is jquery is json library file or a javascript?
Mac, windows or linux? Why do you love this platform while using jquery?
Why is not dom ready working for jquery mobile? : jquery mobile
How we can apply css in multiple selectors in jquery?
Is window.onload is different from document.ready()?
What happen if you return false from a jQuery event handler?
What is the use of queue() in jquery?
How to select combobox select value and text using jquery?
What is jquery.length? : jquery mobile
Differentiate among .empty() vs .remove() vs .detach() in jquery.
Explain the common methods of sending a request to a server.
Tell me what does dollar sign ($) means in jquery? : jquery mobile