Answers for "$(window).scrolltop() not working on mobile"

0

$(window).scrolltop() not working on mobile

$(document.body).on('touchmove', onScroll); // for mobile
$(window).on('scroll', onScroll); 

// callback
function onScroll(){ 
    if( $(window).scrollTop() + window.innerHeight >= document.body.scrollHeight ) { 
        track_page++; 
        load_contents(track_page); 
    }
}
Posted by: Guest on November-13-2020

Code answers related to "$(window).scrolltop() not working on mobile"

Code answers related to "Javascript"

Browse Popular Code Answers by Language