hismightiness
07-24-2003, 02:20 PM
I have a function I have been working on and I want it to execute a couple seconds after it is called:
function showHide2(id, newClass, dispProp) {
var showID=document.getElementById(id);
showID.style.visibility=newClass;
showID.style.display=dispProp;
}
This function is called from onmouseout. Any help would be greatly appreciated.
function showHide2(id, newClass, dispProp) {
var showID=document.getElementById(id);
showID.style.visibility=newClass;
showID.style.display=dispProp;
}
This function is called from onmouseout. Any help would be greatly appreciated.