Skip to content

Instantly share code, notes, and snippets.

@carmichaelize
Last active August 29, 2015 14:19
Show Gist options
  • Save carmichaelize/7b702eb8b93b147f5de7 to your computer and use it in GitHub Desktop.
Save carmichaelize/7b702eb8b93b147f5de7 to your computer and use it in GitHub Desktop.
Know when you reached the bottom of the window
var scroll = function(){
if ($(window).scrollTop() + $(window).height() > $(document).height() - 50) {
//Do something
}
}
//Add/remove function from $(window)
$(window).on('scroll', scroll);
$(window).off('scroll', scroll);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment