Drop
Down Menu
<<
Back | Home | Next
>>
Instructions:
Part 1. Put this part between your head tags:
<script LANGUAGE="JavaScript">
<!--
function leapto(form) {
var myindex=form.dest.selectedIndex
location.href=(form.dest.options[myindex].value);
}
// End -->
</script>
Part 2. This is the example of the drop down menu:
<form name="quicklinks">
<div align="center"><center><p><select NAME="dest"
style="BACKGROUND-COLOR: #DEDEDE; COLOR: #003366; FONT-FAMILY: Arial; SIZE=" 1"
onChange="leapto(this.form)" size="1">
<option selected>JavaScript Quick Menu:</option>
<option value="javascript.htm#Favorites">...Add to favorites</option>
<option value="javascriptonmouse.htm">...Change Images onMouseOver</option>
</select></p>
</center></div>
</form>