I have a div with overflow:scroll.
I want to know if it\'s currently scrolled all the way down. How, using JQuery?
This one doesn\'t work: How can I determin
You can do that by
(scrollHeight - scrollTop()) == outerHeight()
Apply required jQuery syntax, of course...
Without jquery, for onScroll event
var scrollDiv = event.srcElement.body window.innerHeight + scrollDiv.scrollTop == scrollDiv.scrollHeight