Hello
i have these radio buttons and i wish to have the corresponding textboxes to be visible when the radiobutton is selected.
any Help?
snippets.
thanks
thanks in adv
Bry
here is the html:
[HTML]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<tr>
<td>
<form>
<input type="radio" name="Radiobutt onGroup1" value="Radio_bu tton1"> Radio_button1
<br>
<input type="radio" name="Radiobutt onGroup1" value="Radio_bu tton2"> Radio_button2
<br>
<input type="radio" name="Radiobutt onGroup1" value="Radio_bu tton3"> Radio_button3
<br>
<input type="radio" name="Radiobutt onGroup1" value="Radio_bu tton4"> Radio_button4
</form>
</td>
<td>
<form>
texbox 1:
<input type="text" name="texbox1">
<br>
texbox 2:
<input type="text" name="texbox2">
<br>
texbox 3:
<input type="text" name="texbox3">
<br>
texbox 4:
<input type="text" name="texbox4">
</form>
</td>
</tr>
</body>
</html>[/HTML]
i have these radio buttons and i wish to have the corresponding textboxes to be visible when the radiobutton is selected.
any Help?
snippets.
thanks
thanks in adv
Bry
here is the html:
[HTML]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<tr>
<td>
<form>
<input type="radio" name="Radiobutt onGroup1" value="Radio_bu tton1"> Radio_button1
<br>
<input type="radio" name="Radiobutt onGroup1" value="Radio_bu tton2"> Radio_button2
<br>
<input type="radio" name="Radiobutt onGroup1" value="Radio_bu tton3"> Radio_button3
<br>
<input type="radio" name="Radiobutt onGroup1" value="Radio_bu tton4"> Radio_button4
</form>
</td>
<td>
<form>
texbox 1:
<input type="text" name="texbox1">
<br>
texbox 2:
<input type="text" name="texbox2">
<br>
texbox 3:
<input type="text" name="texbox3">
<br>
texbox 4:
<input type="text" name="texbox4">
</form>
</td>
</tr>
</body>
</html>[/HTML]
Comment