Drop down list

liunx

Guest
Hello all,<br />
<br />
I am using netscapes composer to design my page. My question is. On my front page I have a list to all of the different links througout the rest of my web site, is it possible to put all of these links into a quick drop down menu instead ? When they click on the link that they would like to go to I would like for it to take them there.<br />
<br />
Thanks in advance<!--content--><script language="JavaScript" type="text/javascript"><br />
<!--<br />
// original code by Bill Trefzger 12/12/96<br />
function go(){<br />
if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none") {<br />
location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value<br />
}<br />
}<br />
//--><br />
</script><br />
<br />
<script language="JavaScript" type="text/javascript"><br />
<!-- <br />
document.write('<form name="selecter"><select name="select1">');<br />
document.write('<option value=none>your caption');<br />
document.write('<option value=none>--------------------');<br />
document.write('<option value="url1">item1');<br />
document.write('<option value="url2">item2');<br />
document.write('<option value="url3">item3');<br />
document.write('<option value="etc">etc');<br />
document.write('</select>');<br />
document.write('<input type="button" value="Go" onclick="go()">');<br />
document.write('</form>');<br />
// end hiding contents --><br />
</script><br />
<br />
Just grabed that from 1st page 2000, its got heaps of java codes which are usefull, just add in as many different links as you want etc :)<!--content-->Mage,<br />
<br />
thanks a million, I'll see what this code can do. I really appreciate the help.<br />
<br />
Cobra<!--content-->No problem<!--content-->
 
Back
Top