I would like to get the same affect as jQuery.serialize() but I would like to return only the child elments of a given div.
sample result:
single=Single2&multiple=Multiple&radio=radio1
|
I would like to get the same affect as jQuery.serialize() but I would like to return only the child elments of a given div. sample result:
| ||||
|
feedback
|
|
No problem. Just use the following. This will behave exactly like serializing a form but using a div's content instead.
Check http://jsbin.com/azodo for a demonstration (http://jsbin.com/azodo/edit for the code) | |||||||||||||
feedback
|
|
You can improve the speed of your code if you restrict the items jQuery will look at. Use the selector :input instead of * to achieve it.
This will make your code faster because the list of items is shorter. | |||
|
feedback
|
|
jitter's solution helped me from a more generic viewpoint. Clicking a link, finding it's parent div and then serializing:
| |||
|
feedback
|