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!!
3 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">
2 Comments
var chk1 = document.getElementById('chk1');
var chk2 = document.getElementById('chk2');
if ( chk1.checked )
chk2.checked = true;
1 Comment
JohnFx
This solution will work if you don't want ck2 to UNCHECK when you uncheck ck1. It is a little unclear what the OP wants to happen (if anything) when you uncheck ck1.
chk2to be checked automatically and never unchecked automatically.