Hi Roman,
You might want to try using .fadeIn(1500) rather than .show(1500).
The .show(speed) method animates opacity, height, and and width.
--Karl
_________________
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Oct 12, 2007, at 4:05 PM, rsmolkin wrote:
Hi All,
I am trying to fade in a table on a page when a page loads
$(document).ready(function(){
$('#mainTable').hide().show(1500);
});
This works exactly as expected in IE, but for some reason in Firefox
there are 2 issues.
First of all instead of actually fading in, it flies in form the right
(which is kind of ok, since it's better then nothing, but I wanted it
to fade in).
Problem 2, after it's in position it briefly flickers off and on and
then finally stays. Any ideas?
-Roman