Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pwxcoo
Created October 5, 2018 05:54
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 pwxcoo/e36dc9c9bacf4913745c4a491c758bd0 to your computer and use it in GitHub Desktop.
Save pwxcoo/e36dc9c9bacf4913745c4a491c758bd0 to your computer and use it in GitHub Desktop.
[jQuery]Convert form to json
$.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;
};
@pwxcoo
Copy link
Author

pwxcoo commented Oct 5, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment