Click to See Complete Forum and Search --> : navigation
tekkie7
08-20-2003, 09:58 AM
I have a problem. I have tried everything I can think of to solve it, but to no avail. Please help.
I have navigation buttons. I would like a script that would produce pop up menus for the buttons. Soooo....for example when the user clicks on About Us, a submenu would appear and the same for the other buttons. These buttons are gif images.
Thanks
Khalid Ali
08-20-2003, 10:37 AM
Check out this resource there are several scripts that you can use.
http://javascript.internet.com/navigation/
rrsafety
08-20-2003, 02:49 PM
I am looking for the same thing. I have gif buttons that are on the left side of my site and hope to have submenus appear when hovered over. None of the scripts i found seem to do that.
My current code for my first two buttons looks like this, I would assume there is some code i could cut an paste in that would help create a submenu. Any thoughts?:
document.write('<DIV id=menu>');
document.write('<TABLE cellpadding=0 cellspacing=0 border=0 width="154"><tr><td>');
document.write('<img src="picts/menu-top.gif" width="154" height="146"></a><br>');
document.write('</td></tr><tr><form action="index.html"><td>');
document.write('<input type="submit" value="Home" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</td></tr><tr></form><form action="about.htm"><td>');
document.write('<input type="submit" value="About Us" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');