Hi,
I want to be able to start with a zoom of 150% or 200% for the content of an iframe, any ideas how this can be achieved:
css:
#my-div
{
width : 360px;
height : 360px;
overflow : visible;
position : relative;
}
#my-iframe
{
position : absolute;
top : -260px;
left : -25px;
width : 540px;
height : 840px;
}
html:
<body>
<div class="ui-page">
<div class=contents>
<div id="my-div">
<iframe src="http://www.bom.gov.au/products/IDR664.loop.shtml" id="my-iframe" scrolling="no"></iframe>
</div>
</div>
</div>
</body>