Skip to content

Instantly share code, notes, and snippets.

@ahvonenj
Created August 10, 2015 09:01
Show Gist options
  • Save ahvonenj/acfe6eb3268beb598795 to your computer and use it in GitHub Desktop.
Save ahvonenj/acfe6eb3268beb598795 to your computer and use it in GitHub Desktop.
Catch AJAX event / request
$(document).ajaxSend(function(event, request, settings)
{
console.log('Caught AJAX request!');
console.log(event);
console.log(request);
console.log(settings);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment