pulldown menus

liunx

Guest
Hey-<br />
<br />
What's up people? Long time no post.<br />
<br />
Have a really simple question that I should know the answer to, but am stumped at the moment.<br />
<br />
I have a pulldown menu<br />
<select name="pulldownmenu"><br />
<option><a href=http://www.htmlforums.com/archive/index.php/"#why">Why?</a><br />
</select><br />
<br />
I can't figure out to make the hyper link work. I would like to throw a [go] button with it and have them click it to jump to that area (page).<br />
<br />
Thanks in advance,<br />
Gandalf :D<!--content-->it's ok, you're not stumped. the link tag doesn't work in the select tag. so what you are trying to do is wrong and will never work.<br />
<br />
I take it you are trying to get the use to click on an option and then it will automaticall go wothout pushing any buttons?<!--content-->try this....<br />
<br />
<form style="display:inline"> <br />
<select onChange="if(this.selectedIndex!=0){ document.location=this.options[this.selectedIndex].value}"> <br />
<option value="" selected>Jump to Section <br />
<option value="photos_home.html">------2001------</option> <br />
<option value="photos/2001/chall_18.html">Chall's 18th</option> <br />
</select> <br />
</form><!--content-->Yes @ Scoutt<!--content-->then you want what Doc is showing you.<!--content-->
 
Back
Top