PDA

View Full Version : Drop-down menus


2bad4u
26-06-2000, 11:17
How do I create one of those drop-down menus where people select an an item and it takes you to a web page or whatever?

Jinx M
26-06-2000, 11:30
Put this between the <head> and </head>
<BLOCKQUOTE><font size="1" face="Verdana">code:</font><HR><pre>
&lt;SCRIPT LANGUAGE="JavaScript"&gt;
&lt;!-- Begin
function navi(form) {
var myindex=form.jump.selectedIndex;
location.href=(form.jump.options[myindex].value);
}
// End --&gt;
&lt;/SCRIPT&gt;
[/code]

And then for your drop down menu:

<BLOCKQUOTE><font size="1" face="Verdana">code:</font><HR><pre>
&lt;form name="dasform"&gt;
&lt;select name="jump"&gt;
&lt;OPTION VALUE="apage.html" selected&gt;A Page!&lt;/option&gt;
&lt;OPTION VALUE="../anotherpage.html"&gt;Another page on your site!&lt;/option&gt;
&lt;OPTION VALUE="http://www.surreal-southend.co.uk"&gt;A web site elsewhere!&lt;/option&gt;
&lt;/SELECT&gt;
&lt;input type="Button" value="Go!" onclick="navi(this.form)"&gt;
&lt;/form&gt;
[/code]