3

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.

user3523995
  • 31
  • 1
  • 3

1 Answers1

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