Skip to content

Instantly share code, notes, and snippets.

@supercleanse
Last active December 29, 2015 06:59
Show Gist options
  • Save supercleanse/7632704 to your computer and use it in GitHub Desktop.
Save supercleanse/7632704 to your computer and use it in GitHub Desktop.
Intercept submission and serialize form data into an object.
$( "form" ).on( "submit", function(e) {
e.preventDefault();
var formdata = $(this).serializeArray();
// do something cool here
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment