Multiple HTML Dropdowns or Menu?

Renee

New member
i need mutile drop downs for a site navigation i am using this code and it works pretty good, but i need 3 drop downs and not only 1

what i need is the ability to have multiple dropdowns to achive this

dropdown 1 = search engine ; yahoo - google - dogpile
dropdown 2 = type ; news, stories
dropdown 3 = subtype ; hot, new, top

the url should be all three dropdowns like http://www.yahoo.com/news/hot


<form name="gotolocation1" method="POST" ACTION=URI>
<select name="serchengines">
<option value="www.google.com">Google</option>
<option value="www.yahoo.com">Yahoo</option>
<option value="www.dogpile.com">Dogpile</option>
</select>
<input type="button" onClick="location =document.gotolocation1.serchengines.options[document.gotolocation1.serchengines.selectedIndex].value;"value="Go">
</form>
 
Back
Top