Stopping overscroll / bounce in Phonegap IOS
now for phonegap 3.0 above version use below syntex in config.xml file and it will works 100%
<preference name="DisallowOverscroll" value="true"/>
You have to modify a property in your config.xml file.
Just set the following preference to true
<preference name="DisallowOverscroll" value="true" />
The accepted answer did not work for me, I had to set UIWebViewBounce
to false
:
<preference name="UIWebViewBounce" value="false" />