I have below html table.
<table>
<tr>
<td>
Delete:<br><input type="checkbox" id="deleteCheckOne" class="deleteCheck" name="delete" value="0">
</td>
<td>
Delete:<br><input type="checkbox" id="deleteCheckTwo" class="deleteCheck" name="delete" value="0">
</td>
</tr>
</table>
Now using JQuery i have to find the checked
count of the class deleteCheck
using JQuery.
How can i fine the count of number of checked checked boxes using JQuery>
Thanks!