Skip to content

Instantly share code, notes, and snippets.

@kossnocorp
Created March 31, 2011 15:46
Show Gist options
  • Save kossnocorp/896614 to your computer and use it in GitHub Desktop.
Save kossnocorp/896614 to your computer and use it in GitHub Desktop.
var serializedForm = {};
Array.prototype.slice.call(document.getElementById('new-comment-form').elements).forEach(function (el) {
serializedForm[el.name] = el.value;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment