Skip to content

Instantly share code, notes, and snippets.

@sergeh
Created August 15, 2016 18:22
Show Gist options
  • Save sergeh/78ac94f14deb008e99a1f7f06bed3dc6 to your computer and use it in GitHub Desktop.
Save sergeh/78ac94f14deb008e99a1f7f06bed3dc6 to your computer and use it in GitHub Desktop.
Check if element is fully in viewport
function isElementInViewport (el) {
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