Skip to content

Instantly share code, notes, and snippets.

@avishwakarma
Created June 28, 2016 05:59
Show Gist options
  • Select an option

  • Save avishwakarma/3f715480a7f072c4e460eec6139ce15a to your computer and use it in GitHub Desktop.

Select an option

Save avishwakarma/3f715480a7f072c4e460eec6139ce15a to your computer and use it in GitHub Desktop.
jQuery plugin to serialize form elements as an object
/**
* serializeObject - jQuery plugin to serialize form elements as an object
* @uses $("#form").serializeObject(); // return {input:"value", input2:"value" .. }
*/
$.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