I created a code for a drop down menu using the generator on this site and it looks like this:
<form name="jump">
<select name="menu">
<option value=http://www.webdeveloper.com/forum/archive/index.php/"file:///Macintosh/Users/nathan/Desktop/sockcymbal/website/main.dwt">News</option>
<option value="file:///Macintosh/Users/nathan/Desktop/sockcymbal/website/shows.dwt">Shows</option>
<option value="file:///Macintosh/Users/nathan/Desktop/sockcymbal/website/reviews.dwt">Reviews</option>
<option value="file:///Macintosh/Users/nathan/Desktop/SockCymbal/Website/Bands.dwt">Bands</option>
<option value="file:///Macintosh/Users/nathan/Desktop/sockcymbal/website/aboutus.dwt">About Us</option>
<option value="file:///Macintosh/Users/nathan/Desktop/sockcymbal/website/contact.dwt">Contact</option>
</select>
<input type="button" onClick="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">
</form>
Now where it said to enter the URL, I put the location of the page on my computer, because the site is not yet launched. This does not work, it said page cannot be found. Does anyone know how to make this work or a slight alteration of the code to make it work? I would really appreciate it. Thanks
<form name="jump">
<select name="menu">
<option value=http://www.webdeveloper.com/forum/archive/index.php/"file:///Macintosh/Users/nathan/Desktop/sockcymbal/website/main.dwt">News</option>
<option value="file:///Macintosh/Users/nathan/Desktop/sockcymbal/website/shows.dwt">Shows</option>
<option value="file:///Macintosh/Users/nathan/Desktop/sockcymbal/website/reviews.dwt">Reviews</option>
<option value="file:///Macintosh/Users/nathan/Desktop/SockCymbal/Website/Bands.dwt">Bands</option>
<option value="file:///Macintosh/Users/nathan/Desktop/sockcymbal/website/aboutus.dwt">About Us</option>
<option value="file:///Macintosh/Users/nathan/Desktop/sockcymbal/website/contact.dwt">Contact</option>
</select>
<input type="button" onClick="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">
</form>
Now where it said to enter the URL, I put the location of the page on my computer, because the site is not yet launched. This does not work, it said page cannot be found. Does anyone know how to make this work or a slight alteration of the code to make it work? I would really appreciate it. Thanks