R
RCGUA
First of all I should warn all those who may be thinking of responding
to this post that the html below is for -demonstration purposes only-,
it is meant to be simple and easy to read, it -will not validate- at
http://validator.w3.org/, if that is important to you, please move on
to the next post.
I would like the value of
<input type="text" name="TypeOfCarChosen" value="?????"
size="20">
to change when the user selects something in the drop down.
Does anybody know how to do this?
<html>
<body>
<form name="input" action="html_form_action.asp" method="get">
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>
<input type="text" name="TypeOfCarChosen" value="?????" size="20">
<input type="submit" value="Submit">
</form>
</body>
</html>
to this post that the html below is for -demonstration purposes only-,
it is meant to be simple and easy to read, it -will not validate- at
http://validator.w3.org/, if that is important to you, please move on
to the next post.
I would like the value of
<input type="text" name="TypeOfCarChosen" value="?????"
size="20">
to change when the user selects something in the drop down.
Does anybody know how to do this?
<html>
<body>
<form name="input" action="html_form_action.asp" method="get">
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>
<input type="text" name="TypeOfCarChosen" value="?????" size="20">
<input type="submit" value="Submit">
</form>
</body>
</html>