Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anupkumarmaharjan/680fd661733186ed99bd52d5f3bdbb8f to your computer and use it in GitHub Desktop.
Save anupkumarmaharjan/680fd661733186ed99bd52d5f3bdbb8f to your computer and use it in GitHub Desktop.
jQuery Prevent Multiple Form Submit
$(document).ready(function() {
$('form').submit(function() {
if(typeof jQuery.data(this, "disabledOnSubmit") == 'undefined') {
jQuery.data(this, "disabledOnSubmit", { submited: true });
$('input[type=submit], input[type=button]', this).each(function() {
$(this).attr("disabled", "disabled");
});
return true;
}
else{
return false;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment