ie+jquery+fadeIn = crappy fonts
January 21, 2009 7:22 PM   Subscribe

Useing fadeIn() in jQuery, fonts looks crappy in IE7.

I'm using jQuery's fadeIn() (and Out) on a div. Works like a charm, however the fonts in the div look like crap in IE7. Apparently IE turns off Cleartype when you fade stuff.
If I use show() and hide(), the fonts look OK, but that's not what I'm going for. Any known workaround for this?

The code:

$('#header').hover(function () {$('#menu2').fadeIn('fast');},
function () {$('#menu2').fadeOut('fast');}
);
posted by signal to Computers & Internet (4 answers total) 1 user marked this as a favorite
 
Did you try setting the background color of the fading element?
posted by SirStan at 7:38 PM on January 21, 2009


Response by poster: Yes, it's set to #eeeeee
posted by signal at 8:01 PM on January 21, 2009


Best answer: The Google says this.
posted by misterbrandt at 8:06 PM on January 21, 2009 [1 favorite]


Response by poster: Thanks!
posted by signal at 6:04 AM on January 22, 2009


« Older limitless playlist   |   We moved to Syracuse. Now what? Newer »
This thread is closed to new comments.