Skip to content

Instantly share code, notes, and snippets.

@renews
Last active August 29, 2015 14:04
Show Gist options
  • Save renews/b252a3ad5028903d7837 to your computer and use it in GitHub Desktop.
Save renews/b252a3ad5028903d7837 to your computer and use it in GitHub Desktop.
Global Bindings for showing loading on ajax
$(document).ajaxStart(function() {
$("#loading").show();
});
$(document).ajaxStop(function() {
$("#loading").hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment