Skip to content

Instantly share code, notes, and snippets.

@ksloan
Created December 1, 2014 14:04
Show Gist options
  • Save ksloan/f2c663db4c8d941cb1da to your computer and use it in GitHub Desktop.
Save ksloan/f2c663db4c8d941cb1da to your computer and use it in GitHub Desktop.
jQuery plugin to turn form in JSON
$.fn.form2JSON = function() {
var data = {}
this.serializeArray().map(function(item) {
data[item.name] = item.value;
});
return data
}
// use like this
var data = $form.form2JSON()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment