It stands to reason that the problem could well be something that happens while the tip is hidden here:
Code:
function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
pointerobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}
Just as a test (I have no Mac to check on either) I would try changing that red line to:
Code:
tipobj.style.width='1px'
Another good candidate in this script would be to change this:
Code:
function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
to:
Code:
function ietruebody(){
return document.body
}
and later to:
Code:
function ietruebody(){
return document.documentElement
}
Just to see what happens.
Bookmarks