Saved Bookmarks
| 1. |
What Does 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. VIEW sourceprint? jQuery(document).ready(function(){ }); 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. view sourceprint? jQuery(document).ready(function(){ }); |
|