Have you run into an issue with text not displaying correctly in IE when using animation effects like fadeIn, fadeOut etc?
Here is a nice post on how to fix the issue. One thing to note, adding a background-color to the div is an easy fix and works well. Unfortunately sometimes we can’t add a background color if we make use of background images and other css items.
This little snippet will do the trick
$(‘#somediv’).fadeOut(‘slow’, function() {
if(jQuery.browser.msie)
this.style.removeAttribute(‘filter’);
});
Here is the full post
http://blog.bmn.name/2008/03/jquery-fadeinfadeout-ie-cleartype-glitch/

One thought on “JQuery fadeIn/Out IE display issue”
I’ve had issues getting this to work across the various IE versions and blogged a different approach that addresses this.
http://hurtsmybrains.wordpress.com/2010/01/21/jquery-fadein-fadeout-cleartype/
It’s a bit more involved, but works great across all browsers.