I have tons of checkboxes that are either checked (checked=\"checked\") or unchecked.
checked=\"checked\"
I would like to get the number of all checkboxes, unchecked and ch
The following code worked for me.
$('input[name="chkGender[]"]:checked').length;