Skip to content

Instantly share code, notes, and snippets.

@rodolfo42
Created September 4, 2013 19:32
Show Gist options
  • Save rodolfo42/6441733 to your computer and use it in GitHub Desktop.
Save rodolfo42/6441733 to your computer and use it in GitHub Desktop.
Serialize form values in an 'friendly' object
var obj = {};
$( $(form).serializeArray() ).each(function(i, entry) {
obj[entry.name] = entry.value;
});
console.log(obj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment