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

I'm loading elements via ajax. Some of them are only visible if you scroll down the page.
Is there any way I can know if an element is now in the visible part of the page?

EDIT: freakytard solution was right, but I modified it a bit to also check if element is wholly visible

function isScrolledIntoView(elem)
{
    var docViewTop = $(window).scrollTop();
    var docViewBottom = docViewTop + $(window).height();

    var elemTop = $(elem).offset().top;
    var elemBottom = elemTop + $(elem).height();

    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
      && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop) );
}
share|improve this question
I don't really get the problem. Could you try to add more info? – Natrium Jan 28 '09 at 10:04
4  
he means that he wants a method to know if a given element is displayed in the browser window, or if the user needs to scroll to see it. – romaintaz Jan 28 '09 at 10:14
bravo, awesome function! +1 – user1027620 Jan 13 '12 at 1:29
To check if an element is fully visible in a container, just add an extra selector param and re-use the elem code for it. Library.IsElementVisibleInContainer = function (elementSelector, containerSelector) { var containerViewTop = $(containerSelector).offset().top; var containerViewBottom = containerViewTop + $(containerSelector).height(); – Lindsay Oct 30 '12 at 11:25
what would be this "Library" @Lindsay ? – periback2 Feb 15 at 19:13
show 2 more comments

12 Answers

up vote 259 down vote accepted

This should do the trick:

function isScrolledIntoView(elem)
{
    var docViewTop = $(window).scrollTop();
    var docViewBottom = docViewTop + $(window).height();

    var elemTop = $(elem).offset().top;
    var elemBottom = elemTop + $(elem).height();

    return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop));
}
share|improve this answer
13  
This function works great as intended (if the element is visible). If you want to make sure the element is entirely visible in the pain, you can simply change the return to: return ((docViewTop < elTop) && (docViewBottom > elBottom)); – Nic Jun 29 '09 at 5:49
15  
Of course... I meant the pane. – Nic Jun 29 '09 at 5:49
47  
@Nic I thought you was referring to IE ;) – Neil Mar 16 '12 at 10:40
So @Neil's post that was responding to Nic's spelling error, its self has a spelling error :) – php echo username Jan 21 at 16:41
I implemented some more reusable functions here based on this: aramk.com/javascript/… – Aram Kocharyan Feb 2 at 15:38
show 2 more comments

The best method I have found so far is the jQuery appear plugin. Works like a charm.

Mimics a custom "appear" event, which fires when an element scrolls into view or otherwise becomes visible to the user.

$('#foo').appear(function() {
  $(this).text('Hello world');
});

This plugin can be used to prevent unnecessary requests for content that's hidden or outside the viewable area.

share|improve this answer
   
Looks like the project has moved: code.google.com/p/jquery-appear – Derrick Aug 25 '10 at 14:05
9  
This is a cool plugin, no doubt, but doesn't answer the question. – Jon Adams Nov 27 '10 at 22:21
2  
While the jQuery-appear plugin is good for content on the main page area, it unfortunately has issues with fixed size scrolling divs with overflow. The event can fire prematurely when the bound element is within the page's view-able area but outside the div's viewable area and then not fire as expected when the element comes into view in the div. – Peter Aug 12 '11 at 13:46
3  
Is there a disappear plugin? – Shamoon Feb 5 '12 at 23:53
3  
now it is hosted here: github.com/morr/jquery.appear – fjsj Jan 4 at 13:58

jQuery Waypoints plugin goes very nice here.

$('.entry').waypoint(function() {
   alert('You have scrolled to an entry.');
});

There are some examples on the site of the plugin.

share|improve this answer

WebResourcesDepot wrote a script to load while scrolling that uses jQuery some time ago. You can view their Live Demo Here. The beef of their functionality was this:

$(window).scroll(function(){
  if  ($(window).scrollTop() == $(document).height() - $(window).height()){
    lastAddedLiveFunc();
  }
});

function lastAddedLiveFunc() { 
  $('div#lastPostsLoader').html('<img src="images/bigLoader.gif">');
  $.post("default.asp?action=getLastPosts&lastPostID="+$(".wrdLatest:last").attr("id"),
    function(data){
        if (data != "") {
          $(".wrdLatest:last").after(data); 		
        }
      $('div#lastPostsLoader').empty();
    });
};
share|improve this answer

An answer to your update:

return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
      && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop) );

is the same as the shorter:

return ( (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop) );
share|improve this answer
function isScrolledIntoView(elem) {
    var docViewTop = $(window).scrollTop(),
    	docViewBottom = docViewTop + $(window).height(),
    	elemTop = $(elem).offset().top,
     elemBottom = elemTop + $(elem).height();
   //Is more than half of the element visible
   return ((elemTop + ((elemBottom - elemTop)/2)) >= docViewTop && ((elemTop + ((elemBottom - elemTop)/2)) <= docViewBottom));
}
share|improve this answer

There is a plugin for jQuery here that binds an event:

https://raw.github.com/protonet/jquery.inview/master/jquery.inview.min.js

Here is some code for a jQuery plugin that is not using events

$.extend($.expr[':'],{
    inView: function(a) {
        var st = (document.documentElement.scrollTop || document.body.scrollTop),
            ot = $(a).offset().top,
            wh = (window.innerHeight && window.innerHeight < $(window).height()) ? window.innerHeight : $(window).height();
        return ot > st && ($(a).height() + ot) < (st + wh);
    }
});

(function( $ ) {
    $.fn.inView = function() {
        var st = (document.documentElement.scrollTop || document.body.scrollTop),
        ot = $(this).offset().top,
        wh = (window.innerHeight && window.innerHeight < $(window).height()) ? window.innerHeight : $(window).height();

        return ot > st && ($(this).height() + ot) < (st + wh);
    };
})( jQuery );

I found this in a comment here ( http://remysharp.com/2009/01/26/element-in-view-event-plugin/ ) by a bloke called James

There is a rather nice example of this here (scroll down to the bottom):

http://www.bbc.co.uk/sport/0/olympics/2012/

I can't be 100% sure that the example uses the same code, but...

share|improve this answer

If you want to tweak this for scrolling item within another div,

function isScrolledIntoView (elem, divID) 

{

    var docViewTop = $('#' + divID).scrollTop();


    var docViewBottom = docViewTop + $('#' + divID).height();

    var elemTop = $(elem).offset().top;
    var elemBottom = elemTop + $(elem).height();

    return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop)); 
}
share|improve this answer

I have such a method in my application, but it does not use jQuery:

/* Get the TOP position of a given element. */
function getPositionTop(element){
    var offset = 0;
    while(element) {
    	offset += element["offsetTop"];
    	element = element.offsetParent;
    }
    return offset;
}

/* Is a given element is visible or not? */
function isElementVisible(eltId) {
    var elt = document.getElementById(eltId);
    if (!elt) {
    	// Element not found.
    	return false;
    }
    // Get the top and bottom position of the given element.
    var posTop = getPositionTop(elt);
    var posBottom = posTop + elt.offsetHeight;
    // Get the top and bottom position of the *visible* part of the window.
    var visibleTop = document.body.scrollTop;
    var visibleBottom = visibleTop + document.documentElement.offsetHeight;
    return ((posBottom >= visibleTop) && (posTop <= visibleBottom));
}

Edit : This method works well for I.E. (at least version 6). Read the comments for compatibility with FF.

share|improve this answer
1  
For some reason document.body.scrollTop always returns 0 (on ff3). Change it to var visibleTop = (document.documentElement.scrollTop?document.documentElement.scrollTop:document.‌​body.scrollTop); – yoavf Jan 28 '09 at 13:40
Sorry for that. My application must run only in IE 6 (yes, I am not lucky :( ), so I never tested this in FF... – romaintaz Jan 28 '09 at 14:04

I just wanted to share that I combined this with my script to move the div so that it always stays in view:

    $("#accordion").on('click', '.subLink', function(){
        var url = $(this).attr('src');
        updateFrame(url);
        scrollIntoView();
    });

    $(window).scroll(function(){
            changePos();
    });

  function scrollIntoView()
  {
        var docViewTop = $(window).scrollTop();
        var docViewBottom = docViewTop + $(window).height();    
        var elemTop = $("#divPos").offset().top;
        var elemBottom = elemTop + $("#divPos").height();               
        if (elemTop < docViewTop){
            $("#divPos").offset({top:docViewTop});
        }
   }

   function changePos(){        
    var scrTop = $(window).scrollTop();
    var frmHeight = $("#divPos").height()
        if ((scrTop < 200) || (frmHeight > 800)){   
         $("#divPos").attr("style","position:absolute;");
        }else{
          $("#divPos").attr("style","position:fixed;top:5px;");
        }
    }
share|improve this answer

I needed to check visibility in elements inside scrollable DIV container

    //p = DIV container scrollable
    //e = element
    function visible_in_container(p, e)
    {
        z = p.getBoundingClientRect();
        r = e.getBoundingClientRect();

        //check style visiblilty and off-limits
        return e.style.opacity>0 && e.style.display!="none" &&
               e.style.visibility !="hidden" &&
               !(r.top>z.bottom || r.bottom<z.top || 
                 r.left>z.right || r.right<z.left); 
    }
share|improve this answer

Tweeked Scott Dowding's cool function for my requirement- this is used for finding if the element has just scrolled into the screen i.e it's top edge .

function isScrolledIntoView(elem)
{
    var docViewTop = $(window).scrollTop();
    var docViewBottom = docViewTop + $(window).height();
    var elemTop = $(elem).offset().top;
    return ((elemTop <= docViewBottom) && (elemTop >= docViewTop));
}
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.