Skip to content

Instantly share code, notes, and snippets.

@gregblass
Created September 9, 2019 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gregblass/ef28dc486f300673f156d6de86d0f610 to your computer and use it in GitHub Desktop.
Save gregblass/ef28dc486f300673f156d6de86d0f610 to your computer and use it in GitHub Desktop.
// Prevent submitting the form more than once at a time
$(document).on('submit', '#your-form-id', function() {
// Prevent the form from submitting subsequent times
$(this).submit(function() {
return false;
});
// Allow the form to be submitted the first time
return true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment