ejh Posted February 6, 2004 Posted February 6, 2004 Hi! I'm looking for a drop-down script that will take you to a link. Does anyone know where I could find one? Thanks in advance! Quote
MikeJ Posted February 6, 2004 Posted February 6, 2004 There are some decent ones at Dynamic Drive that you might want to check out. Quote
ejh Posted February 6, 2004 Author Posted February 6, 2004 Thank you very much! I sincerely appreciate it. Quote
kaseytraeger Posted March 4, 2004 Posted March 4, 2004 Eric, You can also achieve the same drop-down effect using CSS instead of JavaScript. I actually prefer the CSS method because all current browsers support CSS, whereas users may elect to turn off JavaScript in their browser. For a good example of a drop down menu script using CSS, you can visit Listamatic, WireMan Menu 1 or WireMan Menu 2. Actually, I can't remember now if the Wire-Man menus use only CSS or if they are a combo of CSS and JavaScript. You'll need to look into it. Either way, the Listamatic web site has a lot of really great CSS menus. Check it out! Quote
HCSuperStores Posted March 4, 2004 Posted March 4, 2004 Forgive me, and maybe I'm just really unschooled, but I wouldn't think that CSS on its own could achieve anything but change the formats (color, background color&images, fonts, ect.). Last I knew, CSS was just a style file. I didn't think it was capable of dynamic anything. Let me know if you find out differently. Quote
btrfld Posted March 4, 2004 Posted March 4, 2004 Kasey mentions Listamatic (thanks, Kasey for the great links), and there are 2 examples there that do dynamic menus using CSS only: There's the Pop open List and the Pure CSS Hover List. In both cases, hover over Item One to see the effect. Quote
TCH-Don Posted March 4, 2004 Posted March 4, 2004 You could just use a simple form based option menu ><FORM> <SELECT NAME="list"> <OPTION SELECTED VALUE="home.html">Home <OPTION VALUE="links.html">Links <OPTION VALUE="about.html">About me <OPTION VALUE="contact.html">Contact me <OPTION VALUE="http://friends_site.com/">My friends site </SELECT> <INPUT TYPE=BUTTON VALUE="Go Get It!" onClick="top.location.href=this.form.list.options[this.form.list.selectedIndex].value"> </FORM> Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.