> -----Original Message-----
> From: Brandon Aaron [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, July 03, 2007 10:06 AM
> To: [email protected]
> Subject: [jQuery] Re: fadeIn w/jQuery 1.1.3?
>
> The fade in message is not hidden. Try:
> $('#warning').css('opacity', 0).fadeIn(2000);
This one doesn't work... My content expands but the element never fades
in...
> $('#warning').fadeOut(2000).fadeIn(2000);
This one works - it fades out and fades back in as expected...
$('#warning').css('display', 'none').fadeIn(1000);
This seems to work as well...
And in the previous version (1.1.2) it worked without first hiding
things (?)
Jim