[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 and treating the one with the opacity like Danny mentioned above: $('elementToFade').find('div.opacity').css('filter',

[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 wrote: > Mauricio, > > I am dealing with the fading in of one which in turn has three > child elements: > > ... > >     >     >  

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

2009-06-02 Thread Matt Critchlow
est 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: [jQuer

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

2009-06-02 Thread Mauricio (Maujor) Samy Silva
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 which in turn has three child elements: ... ... .opacity { -moz-opacity: .8; opacity

[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 which in turn has three child elements: ... ... .opacity { -moz-opacity: .8; opacity:0.80; filter:alpha(opacity=80); } ... $('#foo').fadeIn('slow'); ... So, by doing what you suggested, the entire will have the

[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 d

[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 in

[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 > > I am running into an effect issue with IE only. I have a with > about 4 and I apply the fadeIn() on individual based on user > actions. Inside of each I have a div that is styled with: > > -moz-op