Skip to content

Instantly share code, notes, and snippets.

@elhu
Created August 10, 2011 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elhu/1136890 to your computer and use it in GitHub Desktop.
Save elhu/1136890 to your computer and use it in GitHub Desktop.
jquery events
$(document).ready(function() {
console.log("document loaded.");
$(document).ajaxStart(function() {
console.log(".ajaxStart fired!");
});
$(document).ajaxComplete(function() {
console.log(".ajaxComplete fired!");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment