IOS scroll solution via jQuery Mobile
Closed this issue · 1 comments
I would Fork this and play with it but I don't have a project in mind for it at the moment to use it for. However I think it is great and potentially useful plugin. These are two events that are provided via jQuery Mobile that can assist you with iOS and Android scroll events. Cheers!
$(document).bind("scrollstop", function() {
//What occurs when the scrolling stops
});
$(document).bind("scrollstart", function() {
//What occurs when the scrolling starts
});
Hi, thanks for the suggestion. However, the issue doesn't lie with detecting start and end of scrolling, the issues lies in the fact that iOS stops rendering altogether while scrolling. One day this won't be an issue as phones get faster and faster. Apple will eventually allow rendering to continue while scrolling.