detecting when user has scrolled to bottom of div javascript code example
Example: detect end of scroll in div
jQuery(function($) {
$('#flux').on('scroll', function() {
if($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) {
alert('end reached');
}
})
});