I am aware you can prevent the entire view from scrolling with:
<preference name="DisallowOverscroll" value="true" />
which works great, but I am trying to stop the elastic bouncing effect on regular div scrolling. Is there a way to do it through cordova? Or do I have to look to an ugly javascript solution?
I have tried:
<preference name="webviewbounce" value="false" />
<preference name="UIWebViewBounce" value="false" />
Neither has worked. I recall being able to do this on one of the older versions of Cordova. I'm using cordova ios 3.6.3 on iOS 8.
Thanks