how can i make iframe src to full width and height ?
for example i have iframe like this
<iframe scrolling="no" frameborder="0" allowtransparency="true" style="border:none;width:100%;height:100&;" allowfullscreen="" src="http://www.example.com/page.php?width=100%&height=100%"></iframe>
this is just gonna have full size width and height of iframe
only.
as you see this part page.php?width=100%&height=100%
if i keep it like that, it won't work. even if i make it like this
page.php?width=auto&height=auto
what i need here to make this
page.php?width=100%&height=100%
to go full iframe width and height because the content of page.php will be resized if i change the size like this page.php?width=200&height=200
anyone help me with this please. appreciate it