Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript to check a checkbox if an other checkbox is checked

I have 2 checkboxes, consider chk1 and chk2. If one checkbox is checked, the second checkbox should be checked automatically and not viceversa. What should be the javascript? Can someone help me? Thank you!!

like image 481
challengeAccepted Avatar asked Dec 21 '22 20:12

challengeAccepted


2 Answers

Here's a simple inline version to demonstrate the general idea. You might want to pull it out into a separate function in real world usage.

If you want chk2 to automatically stay in sync with any changes to chk1, but not do anything when chk2 is clicked go with this.

 <input id="chk1" type="checkbox" onclick="document.getElementById('chk2').checked = this.checked;">
 <input id="chk2" type="checkbox">

This version will only change chk2 when chk1 is checked, but not do anything when ck1 is unchecked.

 <input id="chk1" type="checkbox" onclick="if (this.checked) document.getElementById('chk2').checked = true;">
 <input id="chk2" type="checkbox">
like image 111
JohnFx Avatar answered Apr 27 '23 12:04

JohnFx


var chk1 = document.getElementById('chk1');
var chk2 = document.getElementById('chk2');

if ( chk1.checked )
      chk2.checked = true;
like image 22
Ali Tarhini Avatar answered Apr 27 '23 10:04

Ali Tarhini