/ Gists / Scroll top / bottom
On gists

Scroll top / bottom

JS oneliners

demo.js Raw #

const scrollToTop = (element) =>
  element.scrollIntoView({ behavior: "smooth", block: "start" });
  
  const scrollToBottom = (element) =>
  element.scrollIntoView({ behavior: "smooth", block: "end" });