Skip to content

Instantly share code, notes, and snippets.

@AshikNesin
Created November 8, 2016 07:52
Show Gist options
  • Save AshikNesin/522901dd56815fd06a56c10bc59eb66e to your computer and use it in GitHub Desktop.
Save AshikNesin/522901dd56815fd06a56c10bc59eb66e to your computer and use it in GitHub Desktop.
Serialize Object using jQuery
$.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