jQuery load more content when scroll to bottom of the page. My script is working well on Safari/iPad browser and android Mozilla browser. But not worked on Android default and Chrome browsers.
$("#div").scroll(function() {
if ($(this).scrollTop() >= ($(this)[0].scrollHeight - $(this).outerHeight())) {
// load more content function
}
});