View Full Version : Drop-Down menu HELP!!!!


roxygurlie
07-16-2003, 11:07 PM
this code isn't working..when i choose something and press go it says like that the page can't be displayed.. I know that they are correct sites and everyhting.. i think something is wrong with the html.. PLEASE HELP!!!!!!


heres the code:

<form name="Links">
<select name="Links">
<option value="#">SELECT:</option>
<option value="www.angelfire.com/rock3/rshoo619/Imagine">Home</option>
<option value="www.thestrokes.com">The strokes' official site</option>
<option value="www.thevines.com">the vines official site</option>
<option value="www.thewhitestripes.com">The White stripes Site</option>
</select> <input type="button" value="Go" onClick="self.location.href=document.Links.Links.options[document.Links.Links.selectedIndex].value">
</form>

thekatgrl
07-16-2003, 11:39 PM
try changing
<option value="#">SELECT:</option> to
<option value="0"> SELECT:</option>
i dunno if that'll fix it, but it might

kittycat
07-16-2003, 11:41 PM
Use the code on this page (http://www.lissaexplains.com/fun.shtml) and replace only the bold sections, then it should work. I don't think the code that you posted has all the parts necessary for a drop down menu.