Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a scrolling page design and I have the following Javascript to hide and show a dialog box:

        if(window.pageYOffset >= 300){

            $('#m1').fadeIn('slow');

    }

    if(document.documentElement.scrollTop >=300){

        $('#m1').fadeIn('slow');

    }

This works great in Chrome,FF, IE9+

However, in IE8,7 it only kind of works. It shows and hides the element properly but the delay between when it evaluates the scroll position and when it hides the element is horrendous. Also, there is no fade, it just happens.

I am wondering if its just a problem with IE8 that I need to deal with or if there is a way for me to achieve a reactive, clean fade with IE8.

share|improve this question
The title of this question is looking for a "jQuery Alternative" but the part that's incompatible with IE8 (pageYOffset) has nothing to do with jQuery. – Sparky Apr 23 '12 at 19:00
Fixed. When I posted it, it seemed like a jQuery issue. – Shawn Borsky Apr 23 '12 at 20:27

1 Answer

up vote 10 down vote accepted

pageYOffset and pageXOffset are not supported in IE8 and before, try this function:

// Return the current scrollbar offsets as the x and y properties of an object
function getScrollOffsets(w) {

    // Use the specified window or the current window if no argument 
    w = w || window;

    // This works for all browsers except IE versions 8 and before
    if (w.pageXOffset != null) return {
        x: w.pageXOffset, 
        y:w.pageYOffset
    };

    // For IE (or any browser) in Standards mode
    var d = w.document;
    if (document.compatMode == "CSS1Compat") {
        return {
            x:d.documentElement.scrollLeft, 
            y:d.documentElement.scrollTop
        };
    }

    // For browsers in Quirks mode
    return { 
        x: d.body.scrollLeft, 
        y: d.body.scrollTop 
    }; 
}
share|improve this answer
document.documentElement.scrollTop works fine to detect the position in IE8. Are you saying the Jquery fade problem is a result of the browser being unable to detect the scroll offset properly? – Shawn Borsky Apr 23 '12 at 18:36
That seems unlikely, since it obviously does detect it...It just behaves differently than it should. – Isaac Fife Apr 23 '12 at 18:40
A combination of this code and setting opacity to inherit fixed it. Thanks @Raminson. – Shawn Borsky Apr 23 '12 at 20:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.