PDA

View Full Version : Select Box Code Help Needed!


marcygiff
04-07-2004, 02:24 PM
I would like to add a drop down combo box with several selections including "Other." I am trying to figure out the code so that when the user selects "Other" a text box will appear so they can specify what "Other" is. Can anyone help?

Joe
04-07-2004, 02:30 PM
well the select box is easy enough

<form name="form1">

<select name="selectbox">
<option>option1</option>
<option>option2</option>
<option>option3</option>
<option>option4</option>
</select>
</form> i'm not so sure about the appearing text box though, i'm not sure that could be done with plain HTML

karinne
04-07-2004, 02:46 PM
for the other thing, you'll need to use javascript. i'm sure if you search the archive or hop on to that section, you'll find what you're looking for ;)

agent002
04-07-2004, 02:50 PM
Something like this (http://www.htmlforums.com/showthread.php?s=&threadid=37199)?