Skip to content

Instantly share code, notes, and snippets.

@malsup
Created June 20, 2012 19:16
Show Gist options
  • Save malsup/2961651 to your computer and use it in GitHub Desktop.
Save malsup/2961651 to your computer and use it in GitHub Desktop.
form spinner example
$('form').submit(e) {
e.preventDefault();
$(this).ajaxSubmit({
beforeSubmit: function() {
// code to show spinner
},
complete: function() {
// code to hide spinner
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment