This page will deal with Navigation issues and menus.

How to make a DropDown Navigation Menu

 


How to make a DropDown Navigation Menu

The code for the menu is below.
You can "Cut & Paste" the code, changing the URL's and
Menu names.

<form name="DropForm">
<p><select SIZE="1" NAME="DropURL">
<option value="http://www.rjcomps.com/FrontPage">FrontPage Help</option>
<
option value="http://www.microsoft.com/frontpage">Microsoft FrontPage</option>
<
option value="http://www.netscape.com">Netscape</option>
<
option value="http://www.lcn2000.com">Lifestyle Computer Network</option>
<
/select> <input TYPE="
button" VALUE="Go" ONCLICK="gotoDrop(this.form)" NAME="button"> </p>
<
script language="JavaScript">
<!--
function gotoDrop(form) {
var OptionIndex=form.DropURL.selectedIndex;
parent.location = form.DropURL.options[OptionIndex].value;}
//-->
<
/script>
<
/form>

 

Back to Top