pathfinder74
01-15-2009, 11:51 AM
Can you use a forms drop-down box just to navigate to different parts of a site?
Where each value would have a link to the respective page? So that, for example, you select "Fiat" from the drop down and it takes you to the Fiat page?
<form action="">
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>
</form>
Where each value would have a link to the respective page? So that, for example, you select "Fiat" from the drop down and it takes you to the Fiat page?
<form action="">
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>
</form>