G Guest Dec 8, 2004 #1 How do I create a dropdown navigation menu? I hope this is the right terminology.
S Steve Easton Dec 8, 2004 #2 If you mean a dropdown select box it's done like 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> Change value to reflect you web pages. If you mean a mouseover dropdown / flyout check help for DHTML and Behaviors. -- Steve Easton Microsoft MVP FrontPage 95isalive This site is best viewed............ ........................with a computer
If you mean a dropdown select box it's done like 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> Change value to reflect you web pages. If you mean a mouseover dropdown / flyout check help for DHTML and Behaviors. -- Steve Easton Microsoft MVP FrontPage 95isalive This site is best viewed............ ........................with a computer