> -----Original Message----- > From: John Resig [mailto:[EMAIL PROTECTED] > Sent: Monday, July 02, 2007 3:17 PM > > Brandon just committed a fix for this to SVN. If you could try it, and > let us know if it works for you, that'd be good (if you can). > http://code.google.com/p/jquery
Sorry for the delay - came in this morning - checked out /trunk and did 'ant build' and tried the jquery.js file. I still get the same behaviour. FadeIn does nothing. FadeOut works as expected. :( I also stripped everything out to a basic HTML file and still see the same thing. -------------- <script type="text/javascript" language="javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready( function(){ $("#warning").fadeIn(2000); $("#warning2").fadeOut(2000); }); </script> <div id="warning"><p>FADE IN</p></div> <div id="warning2"><p>FADE OUT</p></div> -------------- Jim