the fade functions use animate() I believe.

Try animate function and animate your opacity

rupak mandal wrote:
Initially div display property is set to none. FadeIn will handle display property but fadeTo will not.
Any other suggestion....

Thanks
Rupak

On Tue, Sep 8, 2009 at 5:55 PM, Nick Fitzsimons <n...@nickfitz.co.uk> wrote:

2009/9/8 rupak mandal <rupakn...@gmail.com>:
> hi nick,
> Thanks for quick reply.
> That's not the problem. Here is the full code.
>

It looks like jQuery's fadeIn is setting the opacity to the empty
string (on IE only) at the end of the animation. You could try using
fadeTo instead <http://docs.jquery.com/Effects/fadeTo>:

$(document).ready(function(){
   $(".div1").fadeTo(5000, 0.5);
})

but I haven't tested that.

Regards,

Nick.
--
Nick Fitzsimons
http://www.nickfitz.co.uk/


Reply via email to