Lauren_Montana
New Member
I got an issue with the jQuery fade out function on Internet Explorer.As you can see on this FIDDLE, it doesn't fade out on any version of internet explorer. But I noticed it's only when a div has a fixed position (\[code\]position:fixed;\[/code\])Is there any workaround?You can reproduce the bug with this code\[code\] <head> <script type="text/javascript"> $(function() { $('.goBack').click( function(){ $('#about').fadeOut(1000, function () { $('#backend').fadeOut("slow"); }); }); }); </script> </head> <body> <div id="backend"> <div id="about"> <div class="leftPanel"> <h1>About</h1> <div class="menu"> <ul> <li>Menu1</li> <li>Menu2</li> <li>Menu3</li> <li>Menu3</li> </ul> </div> <div class="goBack"> <p>Go Back</p> </div> </div> </div> </div> </body>\[/code\]with this CSS\[code\].leftPanel{ position:fixed; color:black;}\[/code\]Thank you