Skip to content

Instantly share code, notes, and snippets.

@tyxla
Created November 23, 2015 15:46
Show Gist options
  • Save tyxla/e43f2ffdb41121ffcc2b to your computer and use it in GitHub Desktop.
Save tyxla/e43f2ffdb41121ffcc2b to your computer and use it in GitHub Desktop.
isElementInViewport
function isElementInViewport(el) {
if ( document.documentElement.clientWidth <= 767 && document.documentElement.clientHeight < document.documentElement.clientWidth ) {
return $(el).is(':visible');
}
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) &&
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