I would need an endless scroll function for a webpage. If the page gets scrolled to the bottom, the same page should be added without reloading the content.
Here would be a beginning of the code:
$(window).scroll(function() {
if($(window).scrollTop() + $(window).height() == $(document).height()) {
alert("bottom!");
}
});
I would be so thankful for your help!