Skip to content

Instantly share code, notes, and snippets.

@oshanz
Created October 15, 2014 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oshanz/798fdce2ede07cffb8e4 to your computer and use it in GitHub Desktop.
Save oshanz/798fdce2ede07cffb8e4 to your computer and use it in GitHub Desktop.
serializeArray
var o = {}, a = this.$('#contactForm').serializeArray();
$j.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 || '';
}
});
console.log(o);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment