Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery Mouse Flicker in IE

When I execute a jQuery function like .fadeIn, .fadeOut, .slideUp, .slideDown, .toggle, etc. in IE the mouse always flickers and the hourglass quickly flickers in and out of view next to the cursor. I've tried different methods of hiding the mouse entirely while the animation is going on to no avail, plus I don't want that in most cases anyways.

Does anyone have another solution to fix this?

like image 546
sadmicrowave Avatar asked Mar 03 '10 14:03

sadmicrowave


1 Answers

If you are doing animation on anything that has a CSS defined background image, IE will do this. If you can do that in another way (<img> tag, exclude that element when IE animates, etc) it should eliminate the flicker.

like image 150
Nick Craver Avatar answered Sep 19 '22 15:09

Nick Craver