DROP DOWN MENUS
Here's two--One with a "go" button, one without. Both obtained from javascript sites. Simply copy the script and paste into your site while in the html view.
Once the script is there, you can modify it while in the "normal" view. Just right click on the menu and go to "form field properties"
1) Drop down menu with "go" button, like the example below
Here's the script:
<form NAME="form1">
<div align="center"><center><p><script LANGUAGE="JavaScript"> <!-- Hide from old browsers
function golink() {
window.location=document.form1.links.options[document.form1.links.selectedIndex].value;
}
function fixstatus() {
window.status=document.form1.links.options[document.form1.links.selectedIndex].value;
}
// end hiding --></script> <select
NAME="links" onChange="fixstatus()" onBlur="window.status=''" size="1">
<option value="#">---Select a link then click Go !---</option>
<option value="http://www.webnovice.com">WebNovice Online</option>
<option value="#">---Memo Field!---</option>
<option value="http://www.webnovice.com/news.htm">News Page</option>
</select> <input TYPE="button" VALUE="Go !" onClick="golink()"
style="background-color: rgb(255,0,0); color: rgb(255,255,255)"></p>
</center></div>
</form>
2) Drop down menu without "go" button, like the example below
Here's the script:
<!--
function gotoLink(form) {
var OptionIndex=form.ListBoxURL.selectedIndex;
parent.location = form.ListBoxURL.options[OptionIndex].value;}
//-->
</script>
</form>
<form name="AutoListBox3">
<div align="center"><center><p><select name="ListBoxURL" size="1" language="javascript"
onchange="gotoLink(this.form);">
<option selected value="#">--Back Home--</option>
<option value="http://www.webnovice.com">WebNovice Online</option>
<option selected value="#">--Demo Field--</option>
<option value="http://www.webnovice.com/news.htm">News Page</option>
</select><br>
<font face="Verdana" size="1" color="#FFFF00">Helpful links</font></p>
</center></div><div align="center"><center><p>
</center></div><script language="JavaScript">
<!--
function gotoLink(form) {
var OptionIndex=form.ListBoxURL.selectedIndex;
parent.location = form.ListBoxURL.options[OptionIndex].value;}
//-->
</script>