Skip to content

Instantly share code, notes, and snippets.

@wplit
Created May 15, 2020 05:13
Show Gist options
  • Select an option

  • Save wplit/38f84322852f1582ce0a528665f38b76 to your computer and use it in GitHub Desktop.

Select an option

Save wplit/38f84322852f1582ce0a528665f38b76 to your computer and use it in GitHub Desktop.
test.js
jQuery(document).ready(function($){
console.log('document');
});
jQuery(window).load(function($){
console.log('window');
});
(function ($) {
console.log('none');
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment