Skip to content

Instantly share code, notes, and snippets.

@imamabudaud
Created May 2, 2013 07:46
Show Gist options
  • Save imamabudaud/5500751 to your computer and use it in GitHub Desktop.
Save imamabudaud/5500751 to your computer and use it in GitHub Desktop.
Javascript: Form serializer
(function ($) {
// Serializes a form into a json dict
$.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;
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment