Are you using the just released version 1.13? If so, there's a known
problem with fading and I believe a fix is forthcoming. See:
http://groups.google.com/group/jquery-en/browse_thread/thread/1b60819d45471fc7/225e62df424bb8c9#225e62df424bb8c9
Gary
On Jul 2, 3:34 pm, sharq <[EMAIL PROTECTED]> wrote:
> Hi, im complete newbie in jquery and i have a bit frustrating
> problem.. Fading, hiding works fine on FF or Opera, but on IE.. Ajax
> loads page propely, but without all that nice fading ;) So, this
> script hides, loads page to div #tresc and shows it slowly:
>
> <script type="text/javascript">
> $(document).ready(function(){
> $('#tresc').hide().load('./home.html',
> {a:(new Date()).getTime()}).fadeIn(2000);
> });
> </script>
>
> Further theres much more of scripts that loads different pages and
> there`s the same - ajax works fine, fades not... Hope that sameone
> know wheres my problem..
> Greets ;]