I know how to see if an individual checkbox is selected or not.
But Im having trouble with the following - given a form id I need to see if any of the check
You can do this:
if ($('#form_id :checkbox:checked').length > 0){ // one or more checkboxes are checked } else{ // no checkboxes are checked }
Where: