Created
September 17, 2015 05:03
-
-
Save zrobit/bb934418304b9ccea903 to your computer and use it in GitHub Desktop.
jquery initial, best practice
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // IIFE - Immediately Invoked Function Expression | |
| (function($, window, document) { | |
| // The $ is now locally scoped | |
| // Listen for the jQuery ready event on the document | |
| $(function() { | |
| // The DOM is ready! | |
| }); | |
| // The rest of the code goes here! | |
| }(window.jQuery, window, document)); | |
| // The global jQuery object is passed as a parameter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment