Skip to content

Instantly share code, notes, and snippets.

@oviniciusfeitosa
Last active August 8, 2017 22:56
Show Gist options
  • Save oviniciusfeitosa/1e1e46965ff168b84841a7ad668a4861 to your computer and use it in GitHub Desktop.
Save oviniciusfeitosa/1e1e46965ff168b84841a7ad668a4861 to your computer and use it in GitHub Desktop.
Serialize jQuery Array as Object
var parameters = {};
$("#form").serializeArray().map(function(x){parameters[x.name] = x.value;});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment