-
-
Save RimonEkjon/3eff0ef8d39589afa789 to your computer and use it in GitHub Desktop.
JQuery-ajaxForm spinner example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('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