How to count multiple checked checkbox in each row of a table in jsp -
i have multiple check-boxes in each row of table in "jsp" page , want count number of checked check-boxes in each row of table , display it's counter corresponding each row on same page.
i don't have ideas on how it.
if using jquery, attach change event check-boxes , count number of checked items in each row. once count, can display ever like.
$('input[type="checkbox"]').change(function() { $('#checkboxtable tr').each(function() { var count = $(this).find(':checkbox:checked').length; $(this).find('.cbcount').html(count + ' checkboxes checked.'); }); });
here working fiddle see how works.
Comments
Post a Comment