PDA

View Full Version : I need some html/java help



Kyle Smith
02-22-2008, 07:34 AM
Hey guys.

Basically I want to have a drop down box that when you click on an option, text appears.

Can anyone help?

to21
02-22-2008, 08:39 AM
Like this?

Basic drop down box w/ text box pop up:

<FORM>
<SELECT name="choice" onChange="alert('Like this?')">
<OPTION SELECTED>--Choose a Option--
<OPTION>Option 1
<OPTION>Option 2
</SELECT>
</FORM>

Kyle Smith
02-22-2008, 09:21 AM
Like this?

Basic drop down box w/ text box pop up:

<FORM>
<SELECT name="choice" onChange="alert('Like this?')">
<OPTION SELECTED>--Choose a Option--
<OPTION>Option 1
<OPTION>Option 2
</SELECT>
</FORM>

Not quite. I want the text to appear next to the drop down box when you click on an option.