Skip to content

Instantly share code, notes, and snippets.

@rubinchyk
Last active September 27, 2024 20:12
Show Gist options
  • Select an option

  • Save rubinchyk/3ddc6c63f0a1f36a3f8bceb181a75d65 to your computer and use it in GitHub Desktop.

Select an option

Save rubinchyk/3ddc6c63f0a1f36a3f8bceb181a75d65 to your computer and use it in GitHub Desktop.
[Is element visible] Is element visible
function isElementVisible(elem) {
const rect = elem.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
rect.right <= (window.innerWidth || document.documentElement.clientWidth)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment