Skip to content

Instantly share code, notes, and snippets.

@emamut
Created May 19, 2014 13:35
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 emamut/5783df632536f0f460f6 to your computer and use it in GitHub Desktop.
Save emamut/5783df632536f0f460f6 to your computer and use it in GitHub Desktop.
How to show loading spinner in jQuery?
jQuery.ajaxSetup({
beforeSend: function() {
$('#loader').show();
},
complete: function(){
$('#loader').hide();
},
success: function() {}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment