Files
30-seconds-of-code/javascript/snippets/bottom-visible.md
2023-05-01 22:35:56 +03:00

535 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Check if bottom of page is visible snippet
browser
red-mountain 2020-10-22T20:23:47+03:00

Checks if the bottom of the page is visible.

  • Use Window.scrollY, Element.scrollHeight and Element.clientHeight to determine if the bottom of the page is visible.
const bottomVisible = () =>
  document.documentElement.clientHeight + window.scrollY >=
  (document.documentElement.scrollHeight ||
    document.documentElement.clientHeight);
bottomVisible(); // true