In my jQuery mobile page, I'm using iframe to show the different website in my page. In my IOS 6 safari web browser and mobile chrome browser, it shows vertical scroll bar but doesn't show horizontal scroll bar. Thus it crops the right part of the website content. However, it works fine in desktop chrome and mozilla browsers.
The code is given below.
<div data-role="content" >
<iframe id="Iframe1" src="http://www.w3schools.com/" seamless width="200px">
</iframe>
</div>
I also tried with scrolling="yes", but it doesn't work. Any workaround to solve this issue?