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
link|improve this question

feedback

4 Answers

up vote 37 down vote accepted

No problem. Just use the following. This will behave exactly like serializing a form but using a div's content instead.

$('#divId :input').serialize();

Check http://jsbin.com/azodo for a demonstration (http://jsbin.com/azodo/edit for the code)

link|improve this answer
1  
sweet! I love easy answers! – BrokeMyLegBiking Dec 2 '09 at 9:59
4  
Wouldn't $("#divId").find("select, textarea, input").serialize(); yeild better performance? I imagine the above could get slow if the div had lots of elements, like a table with several rows/columns. – David Murdoch Apr 14 '11 at 19:23
As listed in other answers, $('#divId :input').serialize() would be more efficient. – jfountain May 2 at 17:55
Thanks, updated selector – jitter May 3 at 5:11
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.

$('#divId :input').serialize()

This will make your code faster because the list of items is shorter.

link|improve this answer
feedback

Try also this:

$('#divId').find('input').serialize()

link|improve this answer
feedback

jitter's solution helped me from a more generic viewpoint. Clicking a link, finding it's parent div and then serializing:

//$(this) is a "click"able item within the div
var divid = $(this).closest('div').attr('id);
var data = $('#'+ divid+ ' *').serialize();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.