Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 250 Bytes

check_if_bottom_of_page_is_visible.md

File metadata and controls

9 lines (7 loc) · 250 Bytes

Check if bottom of the page is visible

const bottomVisible = () =>
  document.documentElement.clientHeight + window.scrollY >=
  (document.documentElement.scrollHeight || document.documentElement.clientHeight);

bottomVisible(); // true