Skip to content

Instantly share code, notes, and snippets.

@ganmahmud
Last active January 27, 2016 11:02
Show Gist options
  • Save ganmahmud/78170dd5f18899f7942d to your computer and use it in GitHub Desktop.
Save ganmahmud/78170dd5f18899f7942d to your computer and use it in GitHub Desktop.
ajaxComplete handler
// recommended
$(document).bind('ready ajaxComplete', function(){
// Your code here
});
// you could also try this but remember $(document).on( "ready", handler ) is deprecated as of jQuery 1.8.
$(document).on('ready ajaxComplete', function(){
// Your code here
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment