Skip to content

Instantly share code, notes, and snippets.

@ZeusAFK
Created May 29, 2018 19:48
Show Gist options
  • Save ZeusAFK/27ccf75f3816f44753c70322076bed51 to your computer and use it in GitHub Desktop.
Save ZeusAFK/27ccf75f3816f44753c70322076bed51 to your computer and use it in GitHub Desktop.
$.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;
};
// example
var myFormData = $('#myForm').serializeObject();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment