vote up 1 vote down star

How do I determine, without using jquery or any other JavaScript library, if a div with a vertical scrollbar is scrolled all the way to the bottom?

My question is not how to scroll to the bottom. I know how to do that. I want to determine if the the div is scrolled to the bottom already.

This does not work:

if (objDiv.scrollTop == objDiv.scrollHeight)
flag

just guessing here if (objDiv.scrollTop > objDiv.scrollHeight) And may be need to reduce from scrollHeight the size of the scroll arrow (say 20px) – Itay Moav May 18 at 3:22

1 Answer

vote up 3 vote down check

You're pretty close using scrollTop == scrollHeight.

scrollTop refers to the top of the scroll position, which will be scrollHeight - offsetHeight

so

if( obj.scrollTop == (obj.scrollHeight - obj.offsetHeight)) { }

Edit: Corrected my answer, was completely wrong

link|flag
2  
That almost works, scrollHeight-offsetHeight isn't exatly the same value as scrollTop, but after trying your code, if I require if that difference is fewer than 5 pixels for it to be the bottom I get the behavior I want. – apphacker May 18 at 4:20

Your Answer

Get an OpenID
or

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