Skip to content

Instantly share code, notes, and snippets.

@maliqq
Created April 14, 2010 12:00
Show Gist options
  • Save maliqq/365727 to your computer and use it in GitHub Desktop.
Save maliqq/365727 to your computer and use it in GitHub Desktop.
function serialize_form(formid)
{
arr = $('#' + formid).serializeArray();
obj = {}
for (var i = 0; i < arr.length; i++)
{
attr = arr[i]
obj[attr['name']] = attr['value']
}
return obj
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment