Skip to content

Instantly share code, notes, and snippets.

@richellyitalo
Created July 9, 2019 12:15
Show Gist options
  • Save richellyitalo/b6131394e8eb99bacc4f6e363b3684fc to your computer and use it in GitHub Desktop.
Save richellyitalo/b6131394e8eb99bacc4f6e363b3684fc to your computer and use it in GitHub Desktop.
// 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