Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivanmarkovich/d1145a9739d10d00ff2dc2c89b1596ed to your computer and use it in GitHub Desktop.
Save ivanmarkovich/d1145a9739d10d00ff2dc2c89b1596ed to your computer and use it in GitHub Desktop.
User scrolled to bottom
Strict:
if($(window).scrollTop() + $(window).height() == $(document).height())
Near:
if($(window).scrollTop() + $(window).height() > $(document).height() - 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment