Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created June 27, 2014 12:07
Show Gist options
  • Save jbutko/29a27933dce0cd42d054 to your computer and use it in GitHub Desktop.
Save jbutko/29a27933dce0cd42d054 to your computer and use it in GitHub Desktop.
jQuery: Re-enable e.preventDefault() event
$('form').submit( function(ev) {
ev.preventDefault();
//later you decide you want to submit
$(this).unbind('submit').submit()
});
//From http://stackoverflow.com/questions/5651933/what-is-the-opposite-of-evt-preventdefault
@rexjiang92
Copy link

thank you! that worked like magic.

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