Skip to content

Instantly share code, notes, and snippets.

@tmaslen
Created December 9, 2011 09:49
Show Gist options
  • Select an option

  • Save tmaslen/1450926 to your computer and use it in GitHub Desktop.

Select an option

Save tmaslen/1450926 to your computer and use it in GitHub Desktop.
function aboveFold(obj) {
var curtop = 0;
if (obj.offsetParent) {
do {
curtop += obj.offsetTop;
} while (obj = obj.offsetParent);
}
else {
curtop = obj.offsetTop;
}
return curtop < window.pageYOffset + screen.height;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment