Font cleartype problems with fadeIn() and fadeOut() in Internet Explorer 7 (IE7)
Have you ever noticed whenever you use jQuery's fadeIn() and fadeOut() functions your text will become edgy. Mozilla and other seem to be rendering fine (not sure about IE6). Anyway, to solve this problem you need to remove the filter attribute from the DOM element that you have faded in/out.For example:// This causes this text glich
$("#message").fadeIn();
// This will fix it
$("#message").fadeIn();
// This will fix it
Comments
Post a Comment