Categories | Question details Back To List | ||
Grid onMouseOver Hello - is there any way to "slow down" the onMouseOver event? I want to lanuch a window when the user has been hovering for a couple of seconds, not immediately. Answer posted by Support on Nov 04, 2008 09:48 You can use setTimeout and clearTimeout in pair, to call some action with delay. ( setTimeout - set you custom code with timeout, clearTimeou - disable code call if new mouse event occurs ) |