Hi,
I was wondering if there is a way to resize a frame using code without user interaction. If so, what element is used and how to acheive this.
Thank you in advance.
Internet Explorer Web Development
Hi,
I was wondering if there is a way to resize a frame using code without user interaction. If so, what element is used and how to acheive this.
Thank you in advance.
It is possible using JavaScript. I've found a page that explains window and frame resizing: http://www.quirksmode.org/js/winprop.html
Andy
Hi,
<iframe class=mdiv name="SiteFrame" id="SiteFrame" style="width:expression(document.body.offsetWidth - 20);height:expression(document.body.offsetHeight- 70);" >
</iframe>
Regards.