How to preview a website using a iframe.
i.e, the size of the iframe should be should be as of the suggested videos o youtube.
Thanks..
How to preview a website using a iframe.
i.e, the size of the iframe should be should be as of the suggested videos o youtube.
Thanks..
As told in stackoverflow already.
You can use AnythingZoomer to change insides of div.
Create frame.php:
<script type="text/javascript">
$(document).ready(function() {
$("#webpage").load("<?=$_GET['url']?>");
})
</script>
<div id="webpage" style="width: 100%; height: 100%;"></div>
And then load it where you need it with:
<iframe scr="frame.php?url=http://www.google.com" height="300" widht="300">
And set zoom:
<script type="text/javascript">
$("#webpage").anythingZoomer({
expansionSize: 30,
speedMultiplier: 1.4
});
</script>