[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-03 Thread Luch Univision
Hey guys, due to corporate restrictions I couldn't share a link to the live problem. However I managed to solve the issue by doing a separate fadeIn() of each element inside my LI and treating the one with the opacity like Danny mentioned above:

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Gustavo Salomé
Its true, i had the same problem a while ago. I couldnt solve it. 2009/6/2 Luch Univision lara...@us.univision.com I am running into an effect issue with IE only. I have a UL with about 4 LI and I apply the fadeIn() on individual LI based on user actions. Inside of each LI I have a div

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Mauricio (Maujor) Samy Silva
Reset the opacity to IE when fading in the element like so: -Mensagem Original- De: Luch Univision Para: jQuery (English) Enviada em: terça-feira, 2 de junho de 2009 14:46 Assunto: [jQuery] fadeIn() on elements with alpha filter not working properly in IE I am running

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Mauricio (Maujor) Samy Silva
Sorry for the previous post.Hit send early :-( Reset the opacity to IE when fading in the element like so: $('elementToFade').css('filter','alpha(opacity=80)').fadeIn(); Maurício -Mensagem Original- De: Luch Univision Para: jQuery (English) Enviada em: terça-feira, 2

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Luch Univision
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'); ... So, by doing

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread Matt Critchlow
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

[jQuery] Re: fadeIn() on elements with alpha filter not working properly in IE

2009-06-02 Thread danny.copel...@gmail.com
How about targeting the child, like so: $('elementToFade').find('div.opacity').css('filter','alpha (opacity=80)').fadeIn(); On Jun 2, 3:21 pm, Luch Univision lara...@us.univision.com wrote: Mauricio, I am dealing with the fading in of one li which in turn has three child elements: ...