I have these settings in my config.xml
<preference name="DisallowOverscroll" value="true" />
<preference name="UIWebViewBounce" value="false" />
I also use this CSS in a container with a field
overflow:hidden;
-webkit-touch-callout:none;
-webkit-user-select:none;
user-select:none;
This disables scrolling, but if I click / focus the field and drag, my container is still dragging. How to disable this? This only happens when I touch the field and drag it.
Edit: I removed the UIWebViewBounce preference as it is not supported by Cordova, but still the same result.
source
share