Does anybody know how well IE 4.0 is supposed to support javascript?
I have the following script on a page:
along with this html code:
There is a little box below the menu that displays the "tip" which is a description of where the link goes.
The problem is that when i view the page in IE 4.0 it looks ok but the mouseover doesn't work right. When you put the mouse over the link, the tip appears for a fraction of a second and then it disappears. If you twitch the mouse while the cursor is still over the link, the tip will reappear and then quickly disappear again.
What could be causing this problem?
I have the following script on a page:
Code:
function gettip(txt)
{
tip.innerHTML=txt
}
function reset()
{
tip.innerHTML=""
}
along with this html code:
Code:
<a href="is_main_4p0.html" class="nav" onmouseover="gettip('Back to the main page')" onmouseout="reset()">Main</a>
<a href="is_staff.html" class="nav" onmouseover="gettip('Some general information about our staff')" onmouseout="reset()">About Our Staff</a>
<a href="is_guide.html" class="nav" onmouseover="gettip('These are some guides to computer systems and procedures')" onmouseout="reset()">A guide to IS</a>
There is a little box below the menu that displays the "tip" which is a description of where the link goes.
The problem is that when i view the page in IE 4.0 it looks ok but the mouseover doesn't work right. When you put the mouse over the link, the tip appears for a fraction of a second and then it disappears. If you twitch the mouse while the cursor is still over the link, the tip will reappear and then quickly disappear again.
What could be causing this problem?