Skip to content

Instantly share code, notes, and snippets.

@fiznool
Created June 2, 2013 19:54
Show Gist options
  • Save fiznool/5694703 to your computer and use it in GitHub Desktop.
Save fiznool/5694703 to your computer and use it in GitHub Desktop.
Serialize a Backbone Form to JSON.
return _.reduce($el.serializeArray(), function (hash, pair) {
hash[pair.name] = pair.value;
return hash;
}, {});
@fiznool
Copy link
Author

fiznool commented Jun 2, 2013

Props to DocumentCloud for this one.

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