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

I have div layer with overflow set to scroll.

When scrolled to the bottom of the div, return function


share|improve this question

4 Answers

up vote -2 down vote accepted

If it were me, here is what I would do:

add an event handler to the scroll event (any time there is a scroll, this function will be called).

function scrolled(e) {
    var evt = e || window.event;
    if (myDiv.offsetHeight - evt.scrollTop === 0) {
        //call function - myDiv scrolled to the bottom
        scrolledToBottom(e);
    }
}
share|improve this answer
Isn't "scrollTop" supposed to give the number of pixels that are actually scrolled out of the scroll area? In other words, I think you have to subtract the scrolled box's height from the height of the stuff being scrolled. I could be wrong however; I've never tried to do this particular thing. – Pointy Oct 18 '10 at 19:31
@Pointy: You're right. I modified my answer to reflect this. – Gabriel McAdams Oct 18 '10 at 19:33
@Gabrel McAdams: thanks, what do I pass as 'e' and could you rewrite the syntax as if myDiv were $('#myDiv')? – Zebra Oct 18 '10 at 19:44
1  
e is the event. When you assign the event handler, depending on the browser, e will either be passed in (or as in IE, will be available through the event property of the window object). This is why I have the first line to make sure we get the event, wherever it may be. – Gabriel McAdams Oct 18 '10 at 19:54
6  
Unbelievable that people need help turning vanilla JavaScript into jQuery...time to maybe learn the basics? I like jQuery, but man is it bad for people new to JavaScript. – Bjorn Tipling Jan 9 '11 at 8:47
show 5 more comments

The accepted answer is fundamentally flawed. The correct answer is:

function scrolled(e) {
  if (myDiv.offsetHeight + myDiv.scrollTop >= myDiv.scrollHeight) {
    scrolledToBottom(e);
  }
}

Tested this in Firefox, Chrome and Opera. It works.

share|improve this answer
Can you let us know why it's flawed? – SpoonMeiser Feb 15 '11 at 11:36
4  
Because it doesn't detect scroll end at all, it detects when when the portion of the page scrolled upward and height of the containing div are the same! Say you have have twice the content to scroll through than the height of the div, once you've reached the very end, the scrollTop value will be twice the size than the container's offsetHeight. The accepted answer checks to see if these are equal, and it will not detect the end. My solution checks to see if the scrollTop + the container's height is equal to (or greater than, it happens) the entire scrollable area, now that's the bottom! – Bjorn Tipling Feb 15 '11 at 15:18
Hey, could you quickly help a n00b and tell me how to launch a link to another web page once you scroll to the end of the DIV? Much appreciated! Thanks in advance! – Alex Apr 8 '11 at 14:28
5  
@Alex window.location.href = 'http://newurl.com'; or window.open('http://newurl.com'); + the code above. – Bjorn Tipling Apr 8 '11 at 19:09

I could not get either of the above answers to work so here is a third option that works for me! (This is used with jQuery)

if (($(window).innerHeight() + $(window).scrollTop()) >= $("body").height()) {
    //do stuff
}

Hope this helps anyone!

share|improve this answer

This worked for me:

$(window).scroll(function() {
  buffer = 40 // # of pixels from bottom of scroll to fire your function. Can be 0
  if ($(".myDiv").prop('scrollHeight') - $(".myDiv").scrollTop() <= $(".myDiv").height() + buffer )   {
    doThing();
  }
});

Must use jQuery 1.6 or higher

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.