Skip to content

Instantly share code, notes, and snippets.

@kalenjohnson
Created August 15, 2014 18:17
Show Gist options
  • Save kalenjohnson/ec15d227583ce3f4fcd2 to your computer and use it in GitHub Desktop.
Save kalenjohnson/ec15d227583ce3f4fcd2 to your computer and use it in GitHub Desktop.
Show loader on page
(function($) {
jQuery(window).load(function($){
// Turn off the page loader
jQuery('#ajax-loader').fadeOut(500);
});
})(jQuery);
// CSS
#ajax-loader {
position: fixed;
z-index: 110;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: black url(../img/ajax-loader.gif) center no-repeat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment