Check Uncheck All Checkbox using jQuery

This tutorial will 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.

This tutorial has a simple example with less code for obtaining this feature using jQuery.

View Demo

Form with Checkbox Group

We have used this form in a previous tutorial to get checked items from a group of checkboxes.

jquery-check-uncheck

This checkbox group shows 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;
		});
	}
}

View DemoDownload

Photo of Vincy, PHP developer
Written by Vincy Last updated: July 6, 2023
I'm a PHP developer with 20+ years of experience and a Master's degree in Computer Science. I build and improve production PHP systems for eCommerce, payments, webhooks, and integrations, including legacy upgrades (PHP 5/7 to PHP 8.x).
Explore topics
Need PHP help?