Skip to content

Instantly share code, notes, and snippets.

@mapreal19-snip
Created March 4, 2013 22:24
Show Gist options
  • Select an option

  • Save mapreal19-snip/5086244 to your computer and use it in GitHub Desktop.

Select an option

Save mapreal19-snip/5086244 to your computer and use it in GitHub Desktop.
JAVASCRIPT: Get form values
var values = {};
$.each($('.form-horizontal').serializeArray(), function(i, field) {
values[field.name] = field.value;
}); values
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment