Is your jQuery script not working properly when attempting to load more content upon reaching the bottom of the page? It seems to be functional on Safari/iPad and Android Mozilla browsers, but encountering issues on default Android and Chrome browsers.
$("#div").scroll(function() {
if ($(this).scrollTop() >= ($(this)[0].scrollHeight - $(this).outerHeight())) {
// Trigger function to load additional content
}
});