I am trying to call a external url in ios app using html iframe through phonegap. I can able to view the site but i can't able to scroll it.
Asked
Active
Viewed 3,581 times
1 Answers
9
warp your iframe in as follow
<div style="width:100%;height:100%;overflow:scroll !important;-webkit-overflow-scrolling:touch !important">
<iframe src="www.your_url.com" scrolling="yes" style="width:100%;height:100%" frameborder="0"></iframe>
</div>

Mohamed Badr
- 2,562
- 2
- 26
- 43
-
1webkit-overflow-scrolling is what did it for me – Kent Willis Jan 26 '16 at 18:28