I have the following code on my page:
In IE7, FF3 and Safari 3 when I onmouseout from any menu element on the page the function showsubmenu() is called.
In IE6 the showsubmenu() function is only called if I onmouseover and onmouseout while the page is still loading.
What could cause this? I obviously have an error in my logic somewhere.
The page is located at .
Many thanks in advance
-Colin
Code:
<SCRIPT LANGUAGE="JAVASCRIPT" TYPE="TEXT/JAVASCRIPT">
<!--
function hidesubmenu()
{
document.getElementById('subdisplayrow').style.display='none';
}
function showsubmenu()
{
document.getElementById('subdisplayrow').style.display='block';
}
//-->
</SCRIPT>
In IE7, FF3 and Safari 3 when I onmouseout from any menu element on the page the function showsubmenu() is called.
In IE6 the showsubmenu() function is only called if I onmouseover and onmouseout while the page is still loading.
What could cause this? I obviously have an error in my logic somewhere.
The page is located at .
Many thanks in advance
-Colin