Sprawdź, czy przynajmniej jedno pole wyboru jest sprawdzone
//JavaScript
const atLeastOneCheckboxIsChecked = document.querySelectorAll('input[type="checkbox"]:checked').length > 0;
//jQuery
const atLeastOneCheckboxIsChecked = $('input[type="checkbox"]:checked').length > 0;
What