Skip to content

Instantly share code, notes, and snippets.

@storypixel
Last active August 29, 2015 14:10
Show Gist options
  • Save storypixel/aa063a86ce606b5bb887 to your computer and use it in GitHub Desktop.
Save storypixel/aa063a86ce606b5bb887 to your computer and use it in GitHub Desktop.
My basic JavaScript with jQuery starter file
;(function ($, root, undefined) {
$(function () {
'use strict';
// DOM ready
$(window).load(function(){
// Stuff that needs to happen after things are rendered
});
});
})(jQuery, this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment