Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter pierreg_

    (@pierreg_)

    I’ve just commented the lines 226 and 227 of ajax-page-loader.js and now it seems working OK in IE.
    Here are the code that cause me problem :

    jQuery('#' + AAPL_content).css("position", "absolute");
    jQuery('#' + AAPL_content).css("left", "20000px");

    I’m surprised nobody else has encountered this problem.

    Plugin Author Dean Williams

    (@deano1987)

    Unfortunately this code is required for compatibility with IE6/IE7 due to a “vanishing dom” error.

    This code simply moves the div outside your page while it is invisible so you should not see anything. Once loaded a similar code moves it back.

    So your problem must be with something else if you can see the content shifting outside the screen.

    I do not recommend anyone to remove this as it will limit your sites browser compatibility.

    Plugin Author Dean Williams

    (@deano1987)

    I figured out what the problem is, you have an error in your reload code, if an error occurs in this function then the JavaScript is halted meaning the content is not moved back into the page as you would expect.

    Plugin Author Dean Williams

    (@deano1987)

    I have now added handling for reload code errors, if you enable debug mode for AAPL it will tell you what errors are occurring.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Advanced AJAX Page Loader] In IE the "content" div shifts to the right on reload’ is closed to new replies.