Last active
July 27, 2017 08:34
-
-
Save faridv/1775f5294abc60cd4df433b12e0641be to your computer and use it in GitHub Desktop.
jQuery plugin to serialize form as an object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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