I have numerous tables, and when a checkbox is checked in one - all other tables should clear. You can check any number of checkboxes in this table, but only able to check checkboxes in one table at a time. How would I go about doing this? I want to avoid using ids if possible because I have 8 tables.
$('input[type=checkbox]').on('click', function () {
});