First, thanks to DynamicDrive for this very good script, and for the rest as well.
So I've been trying this custom script allowing the onClick event to be used to display menus instead of the rollover one.
I get that expected behaviour, which is the nice part. But life is not nice.
My sub-sub-nested items links don't work anymore. The links are there, they show on hover in the status bar, but clicking on them doesn't load the linked page. Menu disappears, and nothing. The sub-nested items do work on the contrary.
Let me put that in code :
PHP Code:
<div id="ddtopmenubar" >
<ul>
<li><a href="#" rel="ddsubmenu_1"> Example </a></li>
</ul>
</div>
<script type="text/javascript">
ddlevelsmenu.setup("ddtopmenubar", "topbar")
</script>
<ul id="ddsubmenu_1" class="ddsubmenustyle">
<li>
<a href="#"> Example </a>
<ul>
<li><a href="http://">Working !</a>
<ul>
<li><a href="http://">Not working !</a></li>
</ul>
</li>
</ul>
</li>
</ul>
What do you think ?
Bookmarks