Ive been fighting with this for a few hours now and cant seem to grab an answer.
I hope one of you guys can help.
I would like to add a delay on the mouseout so when they move away it has a pause before it disappears.
Here is the code
Header
<script type="text/javascript">
function ShowHide(id, visibility) {
obj = document.getElementsByTagName("div");
obj[id].style.visibility = visibility;
}
HTML
<a href="javascript:ShowHide('verify','visible')"
onmouseover="ShowHide('verify','visible')"
onmouseout="ShowHide('verify','hidden')">
Any help would be great.