In this tutorial, we are going to see how to check or uncheck a group of checkboxes using jQuery. We can use this feature in various scenarios like selecting multiple records to perform database updates or delete.
In this tutorial, we have a simple example with less code for obtaining this feature using jQuery.
Form with Checkbox Group
We have used this form already in a previous tutorial which is for getting checked items from a group of checkboxes.
This checkbox group shows a list of languages as,
<div id="divCheckAll"> <input type="checkbox" name="checkall" id="checkall" onClick="check_uncheck_checkbox(this.checked);" />Check All</div> <div id="divCheckboxList"> <div class="divCheckboxItem"><input type="checkbox" name="language" id="language1" value="English" />English</div> <div class="divCheckboxItem"><input type="checkbox" name="language" id="language2" value="French" />French</div> <div class="divCheckboxItem"><input type="checkbox" name="language" id="language3" value="German" />German</div> <div class="divCheckboxItem"><input type="checkbox" name="language" id="language4" value="Latin" />Latin</div> </div>
jQuery Script to Check or Uncheck
The above form will trigger the jQuery function by clicking the header checkbox next to the Check All label. jQuery function will check whether the header checkbox is checked or unchecked.
Based on the status of this header checkbox, the jQuery script will iterate over the group of checkbox items and change their status. The script is,
function check_uncheck_checkbox(isChecked) { if(isChecked) { $('input[name="language"]').each(function() { this.checked = true; }); } else { $('input[name="language"]').each(function() { this.checked = false; }); } }
Revisions
- December 16, 2021 @ 14:41:24 [Current Revision] by Sharing Solution
- December 16, 2021 @ 14:41:24 by Sharing Solution
- December 16, 2021 @ 14:40:08 by Sharing Solution
No comments yet.