jquery - all checkbox under a div not immediate inside to the div -


i have div id=”content”

the div may contain lot of

<input id="chkboxtag1" type="checkbox" value="1"/> 

div may contain ul tag. ul may contain check boxes. div may contain divs or ul, may contain checkboxes.

is there chance values of checked check boxes inside div (not immediate inside div)?

var selecteditems = new array();  $('#content input:checkbox:checked').each(function() {        selecteditems.push($(this).val());   }); 

Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -