C Cal May 7, 2004 #1 I want to use Drop down menus on Text links not the link bars, can I do that and if so how? Cal Lehman www.towerwatch.com
I want to use Drop down menus on Text links not the link bars, can I do that and if so how? Cal Lehman www.towerwatch.com
T Thomas A. Rowe May 7, 2004 #2 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. ==============================================
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 May 7, 2004 #3 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
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