Collect all the items in a form in jQuery

collections, forms, jquery

Solution

Or, for recent versions of jquery you can use:

http://docs.jquery.com/Ajax/serialize - to a URL encoded string `person.name=john&person.age=20`

or

http://docs.jquery.com/Ajax/serializeArray - to JSON

Problem

How do I collect all the checkboxes and dropdown list items in jQuery for saving?

Original source

Related problems