On-line Guides

How To Guides






The JavaScript FAQ
Prev Home Next

Links in a Select Menu

Question: How do I code a select menu with hyperlinks to different pages?

Answer: To create a select menu like this:
you can use the following code:

<form>
<select 
onChange="if(this.selectedIndex!=0)
self.location=this.options[this.selectedIndex].value">
<option value="" selected>Select a page
<option value="startpag.htm">JavaScript FAQ
<option value="numbers.htm">Numbers
<option value="strings.htm">Strings
<option value="navigati.htm">Navigation
<option value="colors.htm">Colors
<option value="https://www.javascripter.net">JavaScripter.net
</select>
</form> 
Just change the menu items and the corresponding URLs to whatever you want. You can use absolute URLs (like https://www.javascripter.net) as well as relative URLs (like mypage.htm).

JavaScripter.net. Copyright © 1999-2006, Alexei Kourbatov

The JavaScript FAQ
Prev Home Next


Mirrored with kind permission of Alexei Kourbatov Design by Interspire

AltStyle によって変換されたページ (->オリジナル) /