Check UnCheck all Checkboxes with one Checkbox in JavaScript

In this tutorial we will see how to Check UnCheck all Checkboxes with one Checkbox in JavaScript. The JavaScript checked property is used for this which returns or sets the state of a checkbox.

HTML Code

HTML Code is given below, This code contains five checkboxes, with four checkboxes for four different options and one checkbox to check/uncheck all checkboxes.

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Check UnCheck all Checkboxes with one Checkbox in JavaScript</title>
</head>
<body>
<input type="checkbox" name="lang" value="html">HTML<br/>
<input type="checkbox" name="lang" value="css">CSS<br/>
<input type="checkbox" name="lang" value="javascript">JAVASCRIPT<br/>
<input type="checkbox" name="lang" value="php">PHP<br/>
<input type="checkbox" onclick='checkUncheck(this)'/>Check All<br/>
</body>
</html>

JavaScript Code

JavaScript Code is given below, In this code the JavaScript checked Property is used with JavaScript this keyword and getElementsByName() method.

JavaScript checked Property

The JavaScript checked Property is used to set the state of checkbox or to read it's state to see whether it is already checked or not.

JavaScript this keyword

JavaScript this keyword refers to the HTML element that has triggered the event. In our example it's Check All checkbox.

getElementsByName() method

The getElementsByName() method is used to get or select all HTML elements with the specified value of name attribute.

Take a look at the code given below.

<script>
function checkUncheck(main) {
  all = document.getElementsByName('lang');
  for(var a=0;a<all.length;a++) {
    all[a].checked = main.checked;
  }
}
</script>

Demo

Video Tutorial

Watch video tutorial on Check UnCheck all Checkboxes with one Checkbox in JavaScript.

Change font-size using JavaScript Get Font Size of any Tag using JavaScript Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript