Is it possible to deserialize the result of jQuery.Serialize to an array (or other similar JavaScript data structure)?
I know about the jQuery.Deserialize plugin but I don’t think you can get the deserialized data; i.e., it is for deserializing back to the original form (from which you previously serialized the data).
If You want it as an array , try using serializeArray instead of serialize, that gives you the elements mapped to their names as an associative array.
.serializeArray()