Skip to content

Instantly share code, notes, and snippets.

@zdolny
Last active January 23, 2020 12:59
Show Gist options
  • Save zdolny/6774bb6a60a8e22cea90 to your computer and use it in GitHub Desktop.
Save zdolny/6774bb6a60a8e22cea90 to your computer and use it in GitHub Desktop.
end of scroll
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() >= $(document).height()) {
$('.foobar').addClass('at-bottom');
} else {
$('.foobar').removeClass('at-bottom');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment