It's hard to figure out what you are trying to do without a test case. Woulkd you please host a test case? Or, provide the relevant HTML markup and jQuery code? Maurício
-----Mensagem Original----- De: Luch Univision Para: jQuery (English) Enviada em: terça-feira, 2 de junho de 2009 16:21 Assunto: [jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE Mauricio, I am dealing with the fading in of one <li> which in turn has three child elements: ... <li id="foo"> <img /> <div class="opacity"></div> <img /> <li> ... .opacity { -moz-opacity: .8; opacity:0.80; filter:alpha(opacity=80); } ... $('#foo').fadeIn('slow'); ...