Skip to content

Instantly share code, notes, and snippets.

@faridv
Last active July 27, 2017 08:34
Show Gist options
  • Save faridv/1775f5294abc60cd4df433b12e0641be to your computer and use it in GitHub Desktop.
Save faridv/1775f5294abc60cd4df433b12e0641be to your computer and use it in GitHub Desktop.
jQuery plugin to serialize form as an object
// Serialize Object Plugin
"use strict";
$.fn.serializeObject = function () {
var o = {};
var a = this.serializeArray(); // serializeArray - serialize form as an array instead of default object
$.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