Hi there,
Can anyone help with the following, it doesn't return any checked checkboxes.. Am i doing somethign wrong?
I have
$("input[type=checkbox][checked] .type-element").each(
function(index) {
alert('checked' + index);
}
);
here is part of my html ( i have a number of them all as type-container)
<div id="type-1" class="type-container">
<div class="type-description">
test
</div>
<input id="11" class="type-element" type="checkbox"/>
</div>