Skip to content

Instantly share code, notes, and snippets.

@MrCoker
Created December 12, 2019 16:45
Show Gist options
  • Save MrCoker/43ab654f7f7e364b2a86a34e80f8cbe6 to your computer and use it in GitHub Desktop.
Save MrCoker/43ab654f7f7e364b2a86a34e80f8cbe6 to your computer and use it in GitHub Desktop.
Document Ready
/**
* Document ready loads when the browser has passed from the top all the way to the bottom
*/
// Standard
$(document).ready(function(){
});
// Shorthand
$(function(){
});
// WordPress Standard
jQuery(document).ready(function($){
// Allows you to use $ for your jQuery
});
// WordPress Shorthad Doc Ready
(function($){
})(jQuery);
/**
* Load fires after every element on a page has finished loading
*/
$(window).load(function(){
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment