Quick update, I reverted to 1.1.2 and the above script works fine (the
example link still uses 1.1.3 for reference).  Does anyone know if
fadein and fadeout have been altered enough to make this a bug or am I
not understanding enough about how to use jquery?

regards,
-jesse-

On Jul 20, 2:50 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> Greetings.
>
> I read several instances of an inconsistency with FadeIn and FadeOut
> in searching for an answer to my problem, but never saw one that was
> successfully complete.  The problem is that FadeIn and FadeOut effects
> seem to work fine in Firefox but not in IE6.
>
> You can see an instance of this here:http://www.jrcg.net/jquery/test.html
>
> I have seen several "workarounds", none of which work.  Any help is
> appreciated.
>
> Below is example code:
>
> test.html:
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
>
> <html xmlns="http://www.w3.org/1999/xhtml"; lang="en_US"
> xml:lang="en_US">
>         <head>
>                 <title>Testing Fade</title>
>                 <script language="JavaScript" src="inc/jquery.js"></script>
>                 <script type="text/javascript">
>                 function getContent(id, url) {
>                   $('#' + id).fadeOut(1200, function() {
>                     $('#' + id).load(url).hide().fadeIn(1200);
>                   });
>                 }
>                 </script>
>         </head>
>
>         <body>
>                                 <a href="#" 
> onClick="getContent('lev1','test2.html');">Click Here
> for Fade!!</a>
>                 <div id="lev1">
>                                 Not Yet!!
>                 </div>
>         </body>
> </html>
>
> test2.html
> <html>
> <body>
> <!-- Yes I know it is bad HTML :-) -->
> Success!
> </body>
> </html>

Reply via email to