does anybody know how to have a nice smooth scrolling in a div element instead of using -webkit-overflow-scrolling: touch? I need it for my iPad. When I touch the iPad to "scroll down", it has to be smoothly.
The problem is that in my application -webkit is bugging. I just want to have the inner div element to scroll smoothly. Anybody any solutions?
<div id="mainContainer">
<div id="innerContainer">
<div class="box">
...
</div>
<div class="box">
...
</div>
<div class="box">
...
</div>
<div class="box">
...
</div>
<div class="box">
...
</div>
</div>
</div>