Hi, I using fadeOut and fadeIn to show/hide a selected <TR> from a <TABLE>. With this code:
if ( toggleSrc == toggleMinus ) { $(this).attr('src', togglePlus).parents ('tr').siblings().fadeOut('slow'); } else { $(this).attr('src', toggleMinus).parents('tr').siblings ().fadeIn('slow'); } The workaround I tried [1] is this: if (jQuery.browser.msie) { this.style.removeAttribute('filter'); } With this I can get a solve the problem, until while the animation (fading) is taking place, i can see the ugly text Any happy idea? [1] http://blog.bmn.name/2008/03/jquery-fadeinfadeout-ie-cleartype-glitch/ thanks in advanced sebastian