I want a navigator like this one :-
You may know where this is from lol. :]
I found the site they use I uploaded it but it says ERROR in script??
They use : http://www.dynamicdrive.com/dynamici...switchmenu.htm
Can anyone help me?

I want a navigator like this one :-
You may know where this is from lol. :]
I found the site they use I uploaded it but it says ERROR in script??
They use : http://www.dynamicdrive.com/dynamici...switchmenu.htm
Can anyone help me?
Just Use Images Instead Of Just Text and Use Tables Or Divs![]()
That post was really sensible!
There called drop down menus
You need to know a bit of JAVAScript for this aswell.
Sam
I Have exactly the same one.
MYNE is called a DROP DOWN menu.
MYNE is done is JAVAScript.
DOT
Sam
I find a custom code works easier:
Something like that SHOULD work..HTML Code:<html> <head> <script type="text/javascript"> function switch(div) { var el=document.getElementById(div); el.style.display=el.style.display=='none'? 'block' : 'block'; } </script> </head> <body> <div id="title"><a onClick="switch(1)">TITLE LOL</a></div><br /> <div id="1" style="display: none">lol</div> </body> </html>
Last edited by Invent; 13-06-2007 at 06:42 PM.
In javascript..I find a custom code works easier:
HTML Code:<script type="text/javascript"> function switch(div) { document.getElementById(div).style.display=document.getElementById(div).style.display=='none'? 'block' : 'block'; } </script> <div id="title"><a onClick="switch('1');">TITLE LOL</a></div><br /> <div id="1">lol</div>
Ty.
Sam
Yes it's javascript, but do you have to understand the javascript code? no.
Want to hide these adverts? Register an account for free!