[thelist] Javascript question

Liorean Liorean at user.bip.net
Thu Aug 15 02:46:01 CDT 2002


This might be a problem with your onmouseout or getId(). Why not eliminate
them like this?

<div id="blah" onmouseout="waitAndHide(this);">
[...]
function waitAndHide(elm){
   return (timer=setTimeout("hideDiv('+elm+')",250));
}

function hideDiv(elm){
   typeof
elm=='object'&&(ns4)?element.visibility="hide":element.style.visibility="hidden";
   return false;
}

// Liorean




More information about the thelist mailing list