Skip to content

Instantly share code, notes, and snippets.

@mattbontrager
Created October 4, 2012 23:52
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 mattbontrager/3837195 to your computer and use it in GitHub Desktop.
Save mattbontrager/3837195 to your computer and use it in GitHub Desktop.
Provide user feedback during asynchronous ajax requests.
$('#spinner').ajaxStart(function() {
$(this).fadeIn();
}).ajaxStop(function() {
$(this).fadeOut();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment