500 B
500 B
title, tags, firstSeen, lastUpdated
| title | tags | firstSeen | lastUpdated |
|---|---|---|---|
| bottomVisible | browser,beginner | 2017-12-17T17:55:51+02:00 | 2020-10-22T20:23:47+03:00 |
Checks if the bottom of the page is visible.
- Use
scrollY,scrollHeightandclientHeightto determine if the bottom of the page is visible.
const bottomVisible = () =>
document.documentElement.clientHeight + window.scrollY >=
(document.documentElement.scrollHeight ||
document.documentElement.clientHeight);
bottomVisible(); // true