My javascript image menu disappears on the home page.
Return to Recent Questions
Q:
I created a new directory at the root called "newmenu/" and placed all of the
javascript image menu files there. I pointed this page to that new directory. It works!
However, when I point my home page to the newmenu directory, the menu disappears again.
A:
Try to move also the reference to dmenu.js after <Body> tag:
<body onload="...">
...
<!-- DHTML Menu -->
<noscript><a href=http://dhtml-menu.com/menu/>(c)2005 DHTML-Menu.com</a> </noscript>
<!-- Copyright (c) 2005, DHTML Menu, dhtml-menu.com -->
<script type="text/javascript" language="JavaScript1.2">var dmWorkPath="newmenu/"</script>
<script type="text/javascript" language="JavaScript1.2" src="newmenu/dmenu.js"></script>
Return to Recent Questions
|