Answers for "how to load at bottom of page html"

0

how to load at bottom of page html

<script>
    function scrollToBottom() {
        window.scrollTo(0, document.body.scrollHeight);
    }
    history.scrollRestoration = "manual";
    window.onload = scrollToBottom;
</script>
Posted by: Guest on June-18-2021

Code answers related to "how to load at bottom of page html"

Browse Popular Code Answers by Language