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

how to determine, using jquery, if the element is visible on the current page view. I'd like to add a comment functionality, which works like in facebook, where you only scroll to element if it's not currently visible. By visible, I mean that it is not in the current page view, but you can scroll to the element.

share|improve this question

2 Answers

Live Demo

Basically you just check the position of the element to see if its within the windows viewport.

function checkIfInView(element){
    var offset = element.offset().top - $(window).scrollTop();

    if(offset > window.innerHeight){
        // Not in view so scroll to it
        $('html,body').animate({scrollTop: offset}, 1000);
        return false;
    }
   return true;
}
share|improve this answer
Your demo currently has innerWidth instead of innerHeight – DGM Apr 1 '12 at 20:35
@DGM ah thanks for that updated! – Loktar Apr 12 '12 at 19:37
3  
actually, it only works to scroll down. you also need to check if the offset.top < window scrollTop, in case you need to scroll up. – DGM Apr 12 '12 at 23:29

Improving Loktar's answer, fixing the following:

  1. Scroll up
  2. Scroll to a display:none element (like hidden div's etc)

    function scrollToView(element){
    
        if(!element.is(":visible")) {
            element.css({"visiblity":"hidden"}).show();
            var offset = element.offset().top;
            element.css({"visiblity":"", "display":""});
        }
    
        var visible_area_start = $(window).scrollTop();
        var visible_area_end = visible_area_start + window.innerHeight;
    
        if(offset < visible_area_start || offset > visible_area_end){
             // Not in view so scroll to it
             $('html,body').animate({scrollTop: offset - window.innerHeight/3}, 1000);
             return false;
        }
        return true;
    }
    
share|improve this answer

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.