Possible Duplicate:
IFRAMEs and the Safari on the iPad, how can the user scroll the content?
I have a page which has a code roughly like follow;
<table width="100%">
<tr>
<td>
<iframe src="grid_data.html" width="100%" />
</td>
</tr>
</table>
Now the grid_data.html has tabular data of many rows/columns and is part of the main page...
While this grid scrolls horizontally within the main page on desktop browsers like IE/FF, I cannot get it to scroll on the iPad Safari.. i.e. it actually displays the complete grid data without any scroll bars..
I tried experimenting with overflow:auto for the iframe, but still hasn't helped..
How do I get the grid data (part of iframe) to scroll on the iPad?
To get a rough idea, you can see the page on http://ipad.atwebpages.com/table/try.html Just imagine there are multiple date columns like 05/24/2011 , 05/23/2011 , 05/22/2011 , 05/21/2011 and so on...