Hi,
I want to resize an IFRAME.
It works nicely when I try to resize the frame with a commant loaded via
onfocus="if (parseInt(document.body.scrollHeight)<
parseInt(document.body.offsetHeight))
parent.document.getElementById('iframeID').style.h eight=parseInt(this.docume
nt.body.scrollHeight)+2+'px';
else
parent.document.getElementById('iframeID').style.h eight=parseInt(this.docume
nt.body.offsetHeight)+1+'px';" onload="this.focus();"
in the IFRAME body tag.
But I want is to resize the IFRAME when it's content is fully loaded. The
problem is that the content is put in via a javascript.
Even if I put the above lines "if.. else .." under the document.write
commants the this.document.body.scrollHeight will return 0px.
Please help.
Wouter