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: 320
jQuery
|internet-explorer
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">“lorem ipsum”</p> <p>someone else said:</p> <p class="quote" style="display: none;">“magna carta”</p>
© Stack Overflow or respective owner