Drop down hyperlink

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi there
Please help - is it possible to add a different hyperlink to each entry/line
in a drop down box. I am using FP2000
Thanx - Kevin
 
If you mean a standard drop down select box, sure.

Try this:

<form>
<p align="center"><b>Select a Site </b>
<select id="setit" style="color: #0000FF" size="1" name="test">
<option value>Select one</option>
<option value="http://www.altavista.com">AltaVista</option>
<option value="http://www.yahoo.com">Yahoo</option>
<option value="http://www.google.com">Google</option>
</select>
<input type="button" value="Go"
onclick="window.open(setit.options[setit.selectedIndex].value)">
</p>
</form>


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
Back
Top