jQuery fadeIn leaves text not anti-aliased in IE7

Posted by cdillon on Stack Overflow See other posts from Stack Overflow or by cdillon
Published on 2009-04-22T16:54:08Z Indexed on 2010/04/18 10:13 UTC
Read the original article Hit count: 302

Filed under:
|

Why does this happen? Any workarounds?

Example: http://chrisdillon.us/jquery_fadein_problem1.html

jQuery:
$(function() {
   $('p.quote').fadeIn(2000);
});

HTML:

<p>someone said:</p>
<p class="quote">&ldquo;lorem ipsum&rdquo;</p>
<p>someone else said:</p>
<p class="quote" style="display: none;">&ldquo;magna carta&rdquo;</p>

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about internet-explorer