Skip to content

Instantly share code, notes, and snippets.

@toddlahman
Last active January 18, 2020 09:40
Show Gist options
  • Select an option

  • Save toddlahman/6302114 to your computer and use it in GitHub Desktop.

Select an option

Save toddlahman/6302114 to your computer and use it in GitHub Desktop.
Prevent Duplicate Form Submissions with jQuery
jQuery(function() {
$("form").submit(function() {
// submit more than once return false
$(this).submit(function() {
return false;
});
// submit once return true
return true;
});
});
/* or */
jQuery('form').submit(function(){
$(this).find(':submit').attr( 'disabled','disabled' );
});
@trngon

trngon commented Apr 3, 2019

Copy link
Copy Markdown

Thanks! That's really helpful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment