Pravinrasal 0 Junior Poster in Training
Recommended Answers
Jump to PostIt is just a short code for the jQuery variable. So instead of writing your code:
jQuery(document).ready(function() { . . . });
You can write:
$(document).ready(function() { . . . });
Jump to PostI will say this again, it is the global object.
jQuery is also the global object, but to make it easier they made $ equal jQuery.
So instead of typeing jQuery('blah').click(function(){ ... }); you type $('blah').click(function(){ ... });
I'm really not sure how much clearer I can …
All 6 Replies

stbuchok
simplypixie 123 Posting Pro in Training
Pravinrasal 0 Junior Poster in Training
simplypixie 123 Posting Pro in Training
Biiim 182 Junior Poster

stbuchok
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.