An alternative might be to use the fadeTo function and pass in the opacity you want. This worked for me in a very similar case with IE. Just a thought.
On Jun 2, 12:45 pm, "Mauricio \(Maujor\) Samy Silva" <css.mau...@gmail.com> wrote: > 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'); > > ...