I have search with the following keyword but couldn't find.
javascript CheckBoxList api
jquery CheckBoxList checked count
The following should give you the total number of checked checkboxes on the page
var count = $(':checkbox:checked').length;
If you want to restrict it only to a given CheckBoxList you could assign this checkboxlist some class and then:
var count = $('.someClass :checkbox:checked').length;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With