jQuery find all checkboxes checked

voila
$('input:checkbox[checked]')

You could do something like this to find all within tbody and then check the length of the resulting set
($('tbody input:checkbox[checked]').length == 0);

Comments

Popular posts from this blog

deep dive into Material UI TextField built by mui

angular js protractor e2e cheatsheet

react-router v6.4+ loaders, actions, forms and more