I did my best to recreate it in something accessible. I have an ipad mini running on ios7 and I use something similar to this:
<div id="holder"> <iframe height="100%" width="100%" src="http://www.cnn.com" id="iframe"></iframe> </div> #holder { height:500px; width:100%; overflow:scroll; -webkit-overflow-scrolling: touch; }
See the fiddle: http://jsfiddle.net/khJgY/4/
Now the problem is that scrolling in the iframe works fine. But if you change focus (say, to one of the other HTML / CSS / JS editing fields), the iframe scrolls back to the top left, and I have no idea why.
Any help would be appreciated.
source share