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:
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');}
);
Best answer: The Google says this.
posted by misterbrandt at 8:06 PM on January 21, 2009 [1 favorite]
posted by misterbrandt at 8:06 PM on January 21, 2009 [1 favorite]
This thread is closed to new comments.
posted by SirStan at 7:38 PM on January 21, 2009