Reputation: 331
I was using touchscroll.js by davidaurelio but it doesn't work on ios at all.
Anyone can recomend me an alternative?
Thanks!
Upvotes: 0
Views: 104
Reputation: 5708
To add momentum scroll to divs when viewed on ios devices add this to your container div CSS:
overflow-y: scroll; /* has to be a scroll, not auto */
-webkit-overflow-scrolling: touch;
Upvotes: 1