Could you help me how to validate different names of checkboxes at a time. It means i have a different levels of users. User select at least one Role. How to validate the checkboxes? Here my code like this
<input type="checkbox" name="is_admin" id="is_admin"/>
<input type="checkbox" name="is_marketing" id="is_marketing"/>
<input type="checkbox" name="is_school_admin" id="is_school_admin"/>
<input type="checkbox" name="is_trainer" id="is_trainer"/>
<input type="checkbox" name="is_coordinator" id="is_coordinator"/>
Like this my html Form is there. In this roles user select atleast one role. Please help me how to validate using java script or jquery. Thanks in advance