I was trying out the animated .show(100) of jQuery. The animation works fine in both Firefox and IE8. However, in IE8, the rendered fonts (when animation is used) are thinner than the original font. I retried using .show(), now without the animation, and the rendered text was normal.
here's the jQuery code that handles the animation:
var sibling = obj.next();
(sibling.is(":visible")) ? sibling.hide(100) : sibling.show(100);
where sibling is something like this:
<div class="tree">
<ul>
<li><a>Item 1</a></li>
<li><a>Item 2</a></li>
<li><a>Item 3</a></li>
</ul>
</div>
Is this an IE8 bug?
Regards, Erwin