Skip to content

Instantly share code, notes, and snippets.

@tspringborg
Created October 28, 2015 11:02
Show Gist options
  • Save tspringborg/d69e0c655e4d5c401475 to your computer and use it in GitHub Desktop.
Save tspringborg/d69e0c655e4d5c401475 to your computer and use it in GitHub Desktop.
check if element is in browser viewport
function isElementInViewport (el) {
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