Files
30-seconds-of-code/snippets/bottomVisible.md
Isabelle Viktoria Maciohsek aedcded750 Format snippets
2020-10-22 20:23:47 +03:00

20 lines
424 B
Markdown

---
title: bottomVisible
tags: browser,beginner
---
Checks if the bottom of the page is visible.
- Use `scrollY`, `scrollHeight` and `clientHeight` to determine if the bottom of the page is visible.
```js
const bottomVisible = () =>
document.documentElement.clientHeight + window.scrollY >=
(document.documentElement.scrollHeight ||
document.documentElement.clientHeight);
```
```js
bottomVisible(); // true
```