Skip to content

Instantly share code, notes, and snippets.

@Timoteus78
Created August 17, 2014 02:27
Show Gist options
  • Save Timoteus78/ed4f2af50507e9703c33 to your computer and use it in GitHub Desktop.
Save Timoteus78/ed4f2af50507e9703c33 to your computer and use it in GitHub Desktop.
Serialize Object. Good for serializing forms to a map (elementName = elementValue). Found in a backbone tutorial by @thomasdavis
$.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