Forum Moderators: open

Message Too Old, No Replies

timer on mouseout?

         

webmonkey20

1:53 pm on Sep 10, 2003 (gmt 0)



how can I add a timer so that a mouseout command, doesnt occur for say 2 seconds?

thanks,

webmonkey20

korkus2000

2:12 pm on Sep 10, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You will need to call a timer function that will call the menu function like:

onmouseout="twoSecond();"

function twoSecond(){
setTimeout("mouseOutMenuFunction()",2000);
}

The function will call the mouse out menu function after 2 seconds.