Skip to content

Instantly share code, notes, and snippets.

@jlcrow
Created October 26, 2015 23:54
Show Gist options
  • Save jlcrow/175e8858afbd45b5fedb to your computer and use it in GitHub Desktop.
Save jlcrow/175e8858afbd45b5fedb to your computer and use it in GitHub Desktop.
Prevent Double Submit with jQuery
$('form').submit(function(){
$(':submit', this).click(function() {
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment