Skip to content

Instantly share code, notes, and snippets.

@kaajavi
Forked from toshimaru/jquery-scroll-bottom.js
Last active August 29, 2015 14:24
Show Gist options
  • Save kaajavi/af39f9a69debbf00978a to your computer and use it in GitHub Desktop.
Save kaajavi/af39f9a69debbf00978a to your computer and use it in GitHub Desktop.
$(window).on("scroll", function() {
var scrollHeight = $(document).height();
var scrollPosition = $(window).height() + $(window).scrollTop();
if ((scrollHeight - scrollPosition) / scrollHeight === 0) {
// when scroll to bottom of the page
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment