Files
30-seconds-of-code/snippets/bottom-visible.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

555 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Check if bottom of page is visible browser red-mountain 2017-12-17T17:55:51+02:00 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