Skip to content

Instantly share code, notes, and snippets.

@jbutko
Forked from rakeshtembhurne/ajax file load
Created September 26, 2013 19:54
Show Gist options
  • Save jbutko/6719645 to your computer and use it in GitHub Desktop.
Save jbutko/6719645 to your computer and use it in GitHub Desktop.
// HTML
<div id="ajaxBusy"></div>
// CSS
#ajaxBusy {
display:none;
position: fixed;
z-index:999999;
height:99%;
width:99%;
background: url(../img/loading-icon-trans.gif) no-repeat 50% 50%;
}
// JavaScript
$(document).ajaxStart(function(){
$('#ajaxBusy').show();
}).ajaxStop(function(){
$('#ajaxBusy').hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment