Drop down hyperlink

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
 
S

Steve Easton

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top