Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save christierney402/5340332 to your computer and use it in GitHub Desktop.
Save christierney402/5340332 to your computer and use it in GitHub Desktop.
JS: jQuery Self-Invoking Anonymous Function Template #snippet
/*global $:false, jQuery:false */
(function($) {
"use strict";
$(document).ready(function() {
/* js code here */
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment