checkbox onclick check another checkbox

T

Terje

Title says all, if a user check checkbox1 chechbox3 will also be checked,
how do I do this? Have searched around but kan only find out how to check
the same box

Terje
 
E

Evertjan.

Terje wrote on 17 nov 2004 in comp.lang.javascript:
Title says all, if a user check checkbox1 chechbox3 will also be checked,
how do I do this? Have searched around but kan only find out how to check
the same box

<input type=checkbox
onclick="if(this.checked)
document.getElementById('cb3').checked=true">checkbox1<br>

<input type=checkbox id=cb3>checkbox3
 
T

Terje

tanks....

Evertjan. said:
Terje wrote on 17 nov 2004 in comp.lang.javascript:


<input type=checkbox
onclick="if(this.checked)
document.getElementById('cb3').checked=true">checkbox1<br>

<input type=checkbox id=cb3>checkbox3



--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress,
but let us keep the discussions in the newsgroup)
 
M

Mick White

Evertjan. said:
<input type=checkbox
onclick="if(this.checked)
document.getElementById('cb3').checked=true">checkbox1<br>

<input type=checkbox id=cb3>checkbox3

<input type="checkbox"
onclick="document.getElementById('cb3').checked=this.checked"> checkbox1<br>

<input type="checkbox" id="cb3">checkbox3

Mick
 
R

RobB

Terje said:
tanks....

Title doesn't really 'say it all'...what happens when the user
un-checks checkbox3? Oh, well....

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<title>untitled</title>
</head>
<body>
<form style="width:100px;">
<input type="checkbox" name="checkbox1" value="on"
onclick="checkbox3.checked=this.checked" /> checkbox1
<input type="checkbox" name="checkbox2" value="on" /> checkbox2
<input type="checkbox" name="checkbox3" value="on" /> checkbox3
</form>
</body>
</html>
 
E

Evertjan.

Mick White wrote on 18 nov 2004 in comp.lang.javascript:
<input type="checkbox"
onclick="document.getElementById('cb3').checked=this.checked">
checkbox1<br>

<input type="checkbox" id="cb3">checkbox3

Very nice, but not what the OP asked !!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top