קח:
HTML קוד:
function resizeIFrame(aID) {
obj = document.getElementById(aID);
// if contentDocument exists, W3C compliant (Mozilla)
if (document.getElementById(aID).contentDocument){
obj.style.height = document.getElementById(aID).contentDocument.body.scrollHeight;
}
else {
// IE
obj.style.height = document.frames(aID).document.body.scrollHeight;
}
}
במאפינים של ה IFRAME:
HTML קוד:
allowtransparency="true" onload="resizeIFrame(this.id)"
זאת אומרת:
<iframe..........(באזור הזה)></iframe>
אמור לעבוד