Skip to content

Instantly share code, notes, and snippets.

@damien
Created March 4, 2013 05:01
Show Gist options
  • Save damien/5080071 to your computer and use it in GitHub Desktop.
Save damien/5080071 to your computer and use it in GitHub Desktop.
Serialize Object plugin for jQuery. When used on a jQuery element containing a form, this plugin returns an object representation of the given form's data.
// Serialize a form into an object
// Credit goes to Tobias Cohen
// http://stackoverflow.com/a/1186309/51947
$.fn.serializeObject = function() {
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if (o[this.name] !== undefined) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return o;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment