Redirect your website visitors with this simple drop down navigation menu that will automagically take them to their selected page without having to click on submit!
Just put the following script where you’d like your menu to appear. Add as many links as you like! Be sure to include the full URL (ie. http://www.othersitelink.com) if you are linking to pages outside your own website.
<!— begin BUTTON code here –>
<SCRIPT LANGUAGE=”JavaScript”>
function AutoLink()
{
var number = document.FormAdvance.WebLink.selectedIndex;
location.href = document.FormAdvance.WebLink.options[number].value;
}
</SCRIPT>
<FORM NAME=”FormAdvance”>
<SELECT NAME=”WebLink” onChange=”AutoLink(this.form)” >
<OPTION SELECTED>Select from below!
<OPTION VALUE=”page1.html”> Page One
<OPTION VALUE=”page2.html”> Page Two
<OPTION VALUE=”http://www.othersitelink.com”> Page Three
</SELECT>
</FORM>
<!— end LINK code here –>
