[jQuery] Remove filter property to resolve FadeIn issue
Hi,I'm using FadeIn with transparency and the on IE7 the fonts go
fuzzy after fadein completes. Looking at this article:
http://mattberseth.com/blog/2007/12/ie7_cleartype_dximagetransform.html
it appears that IE7 does not tidy up the FILTER property correctly.
I've 'resolved' the problem by removing the style attribute that
contains the filter after the fadein completes - which works for my
specific case. $(this).removeAttr('style);
I'm sure this is a stupid questions, but how can I just remove the
FILTER property of the style?
Thanks