Answers for "auto scroll to the bottom of the screen js"

8

auto scroll to bottom of page js

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

javascript auto scroll on bottom

const scrollToTop = () => {
  const scrollTopButton = document.getElementById('scrollTopButton');

  scrollTopButton.addEventListener('click', () => {
    window.scrollTo(0, document.body.scrollHeight);
  });
};
Posted by: Guest on January-28-2021

Code answers related to "auto scroll to the bottom of the screen js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language