This one is a great javascript dropdown menue which simplifies the navigation in your site !
Place this code between your <HEAD> and </HEAD> tags.
<script language=JavaScript> <!– Script courtesy of http://www.wiredgorilla.com – Your Guide to Professional Web Site Design and Development function Navigate() { var number = NavSelect.selectedIndex; location.href = NavSelect.options[number].value; } // –> </script> |
Place this code where you would like the menu to appear.
<select name="NavSelect" onChange="Navigate(this.form)"> <option value="" SELECTED>Click to Navigate <option value="YourPage.html">Your Page <option value="about:blank">Blank Page <option value="http://yoursite.com">Home </select> |