I believe this only happens in Internet Explorer. Most of the time
setting a CSS background-color to the element your text sits on will
solve the issue.

On Mar 26, 10:45 pm, jgarcia <sebast...@garcia-valenciano.net> wrote:
> 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

Reply via email to