Skip to content

Instantly share code, notes, and snippets.

@MarioBinder
Created August 22, 2017 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarioBinder/07504d066cb65a8ee10c5cb56dbbe24d to your computer and use it in GitHub Desktop.
Save MarioBinder/07504d066cb65a8ee10c5cb56dbbe24d to your computer and use it in GitHub Desktop.
serializeObject
//https://stackoverflow.com/a/17488875/119109
$.fn.serializeObject = function()
{
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if (o[this.name]) {
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