Skip to content

Instantly share code, notes, and snippets.

@my8bit
Forked from rakeshtembhurne/ajax file load
Created September 20, 2012 09:09
Show Gist options
  • Save my8bit/3754824 to your computer and use it in GitHub Desktop.
Save my8bit/3754824 to your computer and use it in GitHub Desktop.
Ajax file load
#ajaxBusy {
display:none;
position: fixed;
z-index:999999;
height:99%;
width:99%;
background: url(../img/loading-icon-trans.gif) no-repeat 50% 50%;
}
<div id="ajaxBusy"></div>
$(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