tags:

views:

61

answers:

2

How to serialize and unserialize the form elements in Jquery?

+1  A: 

First stop would be the jQuery API documentation... specifically .serialize()

Quintin Robinson
A: 

There is also .serializeArray()

Description: Encode a set of form elements as an array of names and values.
Drew LeSueur