#CSS
#ajaxLoadOverlay{
background: rgba(0, 0, 0, 0.8) url('../images/ring-alt.svg') no-repeat scroll center center;
display: none;
height: 100%;
position: fixed;
top: 0;
width: 100%;
z-index: 1001;
}
#HTML
<div id="ajaxLoadOverlay"></div>
#JS
//Show
$('#ajaxLoadOverlay').fadeIn();
//HIde
$('#ajaxLoadOverlay').fadeOut();