I need help

  • Thread starter Thread starter Fred
  • Start date Start date
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
 
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.
==============================================
 
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
 
I've used the Dropdown on www.directdrive.com.
It is very easy to use, the code already written. Just copy, past, then
modify their items to be what you want them to be.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top