Skip to content

Instantly share code, notes, and snippets.

@dggodfrey
Created September 26, 2013 15:17
Show Gist options
  • Save dggodfrey/6715632 to your computer and use it in GitHub Desktop.
Save dggodfrey/6715632 to your computer and use it in GitHub Desktop.
Returns whether the element is visible in the 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