Drop Down Menus

T

Thomas A. Rowe

You will need use DHTML Menus. In IE address bar do a search as:

? JavaScript DHTML Menu Scripts

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
S

Steve Easton

If this is what you mean by text links Try this:


<p align="center"><b>Select a Link: </b><select id="setit" onchange="launchit()">
<option value="">Select one</option>
<option value="javascript:window.open('http://www.95isalive.com')">95isalive</option>
<option value="javascript:window.open('http://www.yahoo.com')">Yahoo</option>
<option value="javascript:window.open('http://www.google.com')">Google</option>
</select>

<script language="javascript">
function launchit(){
eval(setit.options[setit.selectedIndex].value);
}
</script>



Add options with links as you need to and for pages inside the web just use relative urls
such as pagename.htm


--
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

Similar Threads


Top