[jQuery] Re: ClearType rendering issue in IE

2008-02-11 Thread Giant Jam Sandwich
Thanks for that additional resource Bill. Very helpful to have that information. On Feb 11, 12:18 pm, Bil Corry <[EMAIL PROTECTED]> wrote: > Giant Jam Sandwich wrote on 2/11/2008 11:06 AM: > > > Thanks Mike -- that fixed it. The brief flicker in IE7 between > > ClearType and regular type I suppos

[jQuery] Re: ClearType rendering issue in IE

2008-02-11 Thread Bil Corry
Giant Jam Sandwich wrote on 2/11/2008 11:06 AM: Thanks Mike -- that fixed it. The brief flicker in IE7 between ClearType and regular type I suppose is unavoidable. I could use a slide transition instead, but it wouldn't look as good. Oh well. This talks a bit about the problem and offers a s

[jQuery] Re: ClearType rendering issue in IE

2008-02-11 Thread Giant Jam Sandwich
Thanks Mike -- that fixed it. The brief flicker in IE7 between ClearType and regular type I suppose is unavoidable. I could use a slide transition instead, but it wouldn't look as good. Oh well. On Feb 11, 9:01 am, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > Brian, > > In IE6 you can usually solve

[jQuery] Re: ClearType rendering issue in IE

2008-02-11 Thread Mike Alsup
Brian, In IE6 you can usually solve the problem by setting an explicit background color on the element in question. But for IE7 you need to remove the opacity filter after the animation completes: $('#myDiv').fadeIn(function() { if ($.browser.msie) this.style.removeAttribute('filter'