Oops, my mistake. Didn't work. Use this javascript
http://www.html-html.com/l
Main Topics
Browse All Topicshi how do i create hyperlinks for my drop down menu. i want it to move to a new page when one of the options is selected... heres my code so far. basic question but dont know how to. thanks very much for assistance
<select name="DropDownA" style="width: 146px" class="style5">
<option selected="">Choose Here</option>
<option>Sesame STREET</option>
<option>- Basement</option>
<option>- 1st Floor</option>
<option>- 2nd Floor</option>
<option>- 3rd Floor</option>
<option>- 4th Floor</option>
<option>- 5th Floor</option>
<option>Tyssen STREET</option>
<option>- basement</option>
<option>- ground</option>
</select></td></tr>
</table>
</td></tr></table>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Oops, my mistake. Didn't work. Use this javascript
http://www.html-html.com/l
All references are Javea script.
Example:
<script type="text/javascript">
<!--
// original code by Bill Trefzger 12/12/96
function go1(){
if (document.selecter1.select
location = document.selecter1.select1
}
}
//-->
</script>
<script type="text/javascript">
<!--
document.write('<form name="selecter1"><select name="select1" size=1>');
document.write('<option value=none>Select your destination');
document.write('<option value=none>---------------
document.write('<option value=none>Page 1');
document.write('<option value=none>Page 2');
document.write('<option value=none>Page 3');
document.write('</select>'
document.write(' &nbs
document.write('</form>');
// end hiding contents -->
</script>
Read here:
http://www.echoecho.com/ht
Business Accounts
Answer for Membership
by: TriviousPosted on 2008-05-19 at 09:29:41ID: 21599240
<html> >Tiger Direct</a></option>
<body>
<select name="DropDownA" style="width: 146px" class="style5">
<option selected="">Choose Here</option>
<option><a href="www.tigerdirect.com"
<option>- Basement</option>
<option>- 1st Floor</option>
<option>- 2nd Floor</option>
<option>- 3rd Floor</option>
<option>- 4th Floor</option>
<option>- 5th Floor</option>
<option>Tyssen STREET</option>
<option>- basement</option>
<option>- ground</option>
</select></td></tr>
</table>
</td></tr></table>
</body>
</html>
Try this. It should work