Skip to content

Instantly share code, notes, and snippets.

@cagartner
Created June 11, 2013 21:09
Show Gist options
  • Save cagartner/5760723 to your computer and use it in GitHub Desktop.
Save cagartner/5760723 to your computer and use it in GitHub Desktop.
Cria um objeto em javascript com os campos de um formulário
$.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