Skip to content

Instantly share code, notes, and snippets.

@notepadwebdev
Created July 4, 2012 08:39
Show Gist options
  • Save notepadwebdev/3046122 to your computer and use it in GitHub Desktop.
Save notepadwebdev/3046122 to your computer and use it in GitHub Desktop.
Check if element is below the fold
$.belowfold = function(el) {
var fold = $(window).height() + $(window).scrollTop();
return fold <= $(el).offset().top;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment