Yes and yes. Netscape 4.7 is so old that it crashes frequently on pages using modern css style, let alone JavaScript. Luckily it did not crash on this. To quote from the page where this script is featured:
"This script works in all the major DHTML browsers- IE4+, NS6+, and Opera7+."
You can eliminate the error by adding these two lines:
Code:
if (document.layers)
return;
before the line that reads:
Code:
if (window.event) event.cancelBubble=true
This will not make it work though. You could add a script to the body that provides alternate content like:
Code:
<script type="text/javascript">
if (document.layers)
document.write('<br> <br><a href="http://www.javascriptkit.com">JavaScript Kit</a><br>\
<a href="http://www.freewarejava.com">Freewarejava.com</a><br>\
<a href="http://codingforums.com">Coding Forums</a><br>\
<a href="http://www.cssdrive.com">CSS Drive</a>');
</script>
just below this line:
Code:
<a href="default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()">Web Design</a>
Hope this helps.
Bookmarks