Skip to content

Instantly share code, notes, and snippets.

@kiinlam
Created January 4, 2017 08:25
Show Gist options
  • Save kiinlam/9a9520aa22b9a65719936f5043b1ae7d to your computer and use it in GitHub Desktop.
Save kiinlam/9a9520aa22b9a65719936f5043b1ae7d to your computer and use it in GitHub Desktop.
Check an Element In Viewport
function isElementInViewport (el) {
//special bonus for those using jQuery
if (typeof jQuery === "function" && el instanceof jQuery) {
el = el[0];
}
var rect = el.getBoundingClientRect();
return (
rect.top >= 0 &&
rect.left >= 0 &&
rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) && /*or $(window).height() */
rect.right <= (window.innerWidth || document.documentElement.clientWidth) /*or $(window).width() */
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment