I need help

F

Fred

Can anyone recommend a JavaScript drop down menu that an idiot could
install. If anyone knows of a site that has such a drop menu installed I
would love to know. Fred
 
T

Thomas A. Rowe

See Developer Resources | Scripts on my site below.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
A

anonymous

In between the <head></head> tags on the page place the
following Javascript:
<Script Language="JavaScript">
<!-- Hide the script from old browsers --
function goto(form) {
var index=form.redirect.selectedIndex
if (form.redirect.options[index].value != "0") {
location=form.redirect.options[index].value;}}
//-->
</SCRIPT>

Your drop down box should look like the following:
<select name=redirect size=1 ONCHANGE="goto(this.form)">
<option value="http://www.yahoo.com/">Yahoo!</option>
</select>

Just make sure that the select box is within <form> tags.
To make additional menu items just copy and paste
 
Top