Created
September 29, 2016 06:46
-
-
Save dharma017/f89f8d72731282e7b24391a6879f70f5 to your computer and use it in GitHub Desktop.
jQuery Prevent Multiple Form Submit
This file contains hidden or 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
$(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