Skip to content

Instantly share code, notes, and snippets.

@fiznool
Created June 2, 2013 19:54
Show Gist options
  • Select an option

  • Save fiznool/5694703 to your computer and use it in GitHub Desktop.

Select an option

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

fiznool commented Jun 2, 2013

Copy link
Copy Markdown
Author

Props to DocumentCloud for this one.

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