JQuery fadeIn or fadeTo IE font problems

Hi

Had this issue on one of my websites were I rotated the "news" on the front page using the jquery fade out, html(),fade in technique. After the first rotation the text would go to crap - look very pixilated. But the first time everything looked fine. The issue was IE 7 drops ClearType text when you use the fade in / out, because it adds a filter attribute to the element as it is fading but does not remove it at the end. The solution was to remove the filter attribute on the return of the fade like



$('#node').fadeOut('slow', function() {


   this.style.removeAttribute('filter');


});


Article here has a more generic fix described

http://blog.bmn.name…eartype-glitch/

Just thought I would give y'all a heads up…

nz