I'm trying to get the scrollTop() value while scrolling a website on the iPad/iPhone.
$(window).scroll(function(){
console.log($(window).scrollTop());
});
I'm using this code for normal desktop browsers. On Safari with the Mac the console shows every pixel while scrolling. But on the iPad, I only get the value when the scrolling stops.
How can I get every scrollTop value while scrolling even on the iPad?