Skip to content

Instantly share code, notes, and snippets.

@dre3s
Last active January 12, 2016 17:52
Show Gist options
  • Select an option

  • Save dre3s/e362039fa5c6ce56638a to your computer and use it in GitHub Desktop.

Select an option

Save dre3s/e362039fa5c6ce56638a to your computer and use it in GitHub Desktop.
my.js.form.serialize.array

#See names and values of form

var str = {};
$("form").serializeArray().forEach(function(item){
    str[item.name] = item.value;
});
console.log(str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment