Skip to content

Instantly share code, notes, and snippets.

@RimonEkjon
Forked from malsup/gist:2961651
Last active August 29, 2015 14:05
Show Gist options
  • Save RimonEkjon/3eff0ef8d39589afa789 to your computer and use it in GitHub Desktop.
Save RimonEkjon/3eff0ef8d39589afa789 to your computer and use it in GitHub Desktop.
JQuery-ajaxForm 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