call function when scroll bar touches bottom right

call function when scrollbar reaches bottom right

$(window).scroll(function(){ 
if($(window).scrollTop() >= $('#show').offset().top + $('#show').outerHeight() - window.innerHeight)
{
  alert('bottom reached');
}

});

change id show to body or any div



Leave a Reply