Created
June 20, 2012 19:16
-
-
Save malsup/2961651 to your computer and use it in GitHub Desktop.
form 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