I am trying to scroll an iframe on iOS, and I succeeded, it\'s scrolling well, reference:
http://home.jejaju.com/play/iframe-scroll.html
http://areaaperta.com/ni
Try adding -webkit-transform:translate3d(0,0,0) to the iframe style and all elements within to force hardware acceleration - should reduce the choppiness.
-webkit-transform:translate3d(0,0,0)
In main page style:
iframe { -webkit-transform:translate3d(0,0,0); }
and in iframe style:
p { -webkit-transform:translate3d(0,0,0); }