how to loop through a list of checkboxs using jquery?
Here’s the code…
$("input:checked").parent().find("strong").text();
Tried this but not working…
$("input:checked").parent().find("strong").text().each(function()
{
alert(this);
});
1 Answer