Answers for "javascript slowly step by step scroll to bottom"

8

js scroll to bottom

window.scrollTo(0,document.body.scrollHeight);
Posted by: Guest on July-13-2020
2

javascript detect scroll to bottom of page

function getDocHeight() {	// $(document).height() value depends on browser
    var D = document;
    return Math.max(
        D.body.scrollHeight, D.documentElement.scrollHeight,
        D.body.offsetHeight, D.documentElement.offsetHeight,
        D.body.clientHeight, D.documentElement.clientHeight
    );
}
$(window).scroll(function() {
       if($(window).scrollTop() + $(window).height() == getDocHeight()) {
           alert("bottom!");
       }
});
Posted by: Guest on May-22-2021

Code answers related to "javascript slowly step by step scroll to bottom"

Code answers related to "Javascript"

Browse Popular Code Answers by Language