fadeOut followed by window.location redirect IE7 Issue

fadeOut followed by window.location redirect IE7 Issue

I'm getting an undesired effect in IE7 that maybe someone has some insight on...

I'm fading out pages then redirecting to a new page:
  1.         $("a").click(
                function(event){
                    event.preventDefault();
                    linkLocation = this.href;
                    $("body").fadeOut(1000, redirectPage);
                }
            );
     
            function redirectPage() {
                window.location = linkLocation;
            };











Works great in Firefox and IE8, but in IE7 the page fades and then flashes visible again briefly before redirecting.

The page is at: beta.bluew.org

Any thoughts would be appreciated :)








    • Topic Participants

    • jonw