There is another version of the anylink menu where the menu items are in the html and not in a separate menucontents.js file. You can find the script here:
http://www.dynamicdrive.com/dynamici...anylinkcss.htm
if you don't specify the target it will open in the same window, but you can get it to open in a new window like this
Code:
<div class="column">
<b>Web Development</b>
<ul>
<li><a href="http://www.dynamicdrive.com/" target="_blank">Dynamic Drive</a></li>
<li><a href="http://www.cssdrive.com">CSS Drive</a></li>
<li><a href="http://www.javascriptkit.com">JavaScript Kit</a></li>
<li><a href="http://www.codingforums.com">Coding Forums</a></li>
<li><a href="http://www.javascriptkit.com/domref/">DOM Reference</a></li>
</ul>
</div>
in this example only the red link opens in a new window. It works in both IE and firefox
Bookmarks