OZONE Asylum
Forums
Stupid Basic HTML
iFrames Height
This page's ID:
9671
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
Of course... [code] function resizeIframe(id) { try { frame = document.getElementById(id); // Get the document within the frame. This is where you will fail with 'permission denied' // if the document within the frame is not from the same domain as this document. // Note: IE uses 'contentWindow', Opera uses 'contentDocument', Netscape uses either. innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document; // Resize the style object, if it exists. Otherwise, resize the frame itself. objToResize = (frame.style) ? frame.style : frame; // Resize the object to the scroll height of the inner document body. You may still have // to add a 'fudge' factor to get rid of the scroll bar entirely. With a plain-vanilla // iframe, I found Netscape needs no fudge, IE needs 4 and Opera needs 5... // Of course, your mileage may vary. objToResize.height = innerDoc.body.scrollHeight + 5; } catch (e) { window.status = e.message; } } [/code] To have the iframe properly sized once the page loads, add [code]onload="resizeIframe('theIframeId');"[/code] to the [b]body[/b] tag for the page which contains the iframe. Also, change 'theIframeId' to the [b]id[/b] of the iframe you wish to resize. I've tested this in Opera 7, IE 6 and Netscape 7. (Thanks, ozphactor! In reviewing the above code before posting, I found it to be broken. And, in fixing it, I have found it now works in Opera -- in earlier attempts I had never gotten it to work in Opera...) [This message has been edited by MajorFracas (edited 08-19-2003).] [This message has been edited by MajorFracas (edited 08-19-2003).]
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »