Hello,
I am using jquery + interface to change the background color (with a fade) of a table row when i hover over that row. The problem is that it sometimes fades out (the mouseout function???) without my mouse leaving the row, causing some irritating flickering.
Here's how i do it:
HTML Code:
<tr onMouseOver="$(this).animate({backgroundColor: '#f6d71e'},200);" onMouseOut="$(this).animate({backgroundColor: '#ffffff'},200);">
Any ideas why this happens and how i can prevent this?
thanks!
Matt
Last edited by killerwhale65; 07-03-2009 at 09:37 AM..
|