Skip to content

Instantly share code, notes, and snippets.

@jswhisperer
Created June 26, 2013 19:07
Show Gist options
  • Select an option

  • Save jswhisperer/5870477 to your computer and use it in GitHub Desktop.

Select an option

Save jswhisperer/5870477 to your computer and use it in GitHub Desktop.
Universal Ajax Load indicator
$(document).ajaxStart(function() {
$("#loading_indicator").show();
}).ajaxStop(function(){
$("#loading_indicator").hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment