reasr
03-23-2005, 01:50 PM
Hi,
i have a form with some checkbox and dropdown list
if T-shirt option is checked i want to hide the ball options from the dropdown list, and if Ball option is checked i want to hide the T-shirt options
how to do that
Regards,
<html>
<head>
<title>test</title>
</head>
<body>
<form name=calc >
<input type="checkbox" name="tshirt" value="ON">T-shirt
<select size="1" name="description">
<option>Nike</option>
<option>Addidas</option>
<option>Fila</option>
<option>Basket Ball</option>
<option>Football</option>
<option>Tennis Ball</option>
</select></p>
<input type="checkbox" name="ball" value="ON">Ball
</form>
</body>
</html>
i have a form with some checkbox and dropdown list
if T-shirt option is checked i want to hide the ball options from the dropdown list, and if Ball option is checked i want to hide the T-shirt options
how to do that
Regards,
<html>
<head>
<title>test</title>
</head>
<body>
<form name=calc >
<input type="checkbox" name="tshirt" value="ON">T-shirt
<select size="1" name="description">
<option>Nike</option>
<option>Addidas</option>
<option>Fila</option>
<option>Basket Ball</option>
<option>Football</option>
<option>Tennis Ball</option>
</select></p>
<input type="checkbox" name="ball" value="ON">Ball
</form>
</body>
</html>