Skip to content

Instantly share code, notes, and snippets.

@techb
Created October 1, 2019 17:50
Show Gist options
  • Save techb/f906d4cf053da2cecdd7390a6d48bc6d to your computer and use it in GitHub Desktop.
Save techb/f906d4cf053da2cecdd7390a6d48bc6d to your computer and use it in GitHub Desktop.
Check if a div or container can scroll, jQuery
jQuery(function($) {
$(".my-selector").on('scroll', function() {
if($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) {
// at the bottom, do stuff like hide a down arrow
$(".down-arrow").addClass("hide");
}else{
// not at bottom, show down arrow or something else
$(".down-arrow").removeClass("hide");
}
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment