jQuery fadeIn leaves text not anti-aliased in IE7
- by cdillon
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>