Skip to content

Instantly share code, notes, and snippets.

@yagopv
Last active October 5, 2015 21:37
Show Gist options
  • Save yagopv/2880359 to your computer and use it in GitHub Desktop.
Save yagopv/2880359 to your computer and use it in GitHub Desktop.
Serialize form to JSON
(function( $ ){
$.fn.serializeObject=function() {
var json = {};
jQuery.map($(this).serializeArray(), function(n, i){
json[n['name']] = n['value'];
});
return json;
};
})( jQuery );
or
$.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