Skip to content

Instantly share code, notes, and snippets.

@rubinchyk
Created November 13, 2023 12:03
Show Gist options
  • Save rubinchyk/3ddc6c63f0a1f36a3f8bceb181a75d65 to your computer and use it in GitHub Desktop.
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