I have a webpage, A.html, that has several links and an iframe with a page, B.html, that loads into A's iframe when A.html loads. When A.html loads, I have a simple bit of javascript that determines the height of the document to be loaded into the iframe when A loads and sizes the iframe accordingly so that I do not have to use scrollbars.
When I click on one of the links in A.html, I want B.html to be replaced with whatever page the link in A takes me to (we'll call this one C.html). Now, when C loads into A's iframe, C.html will have a link to yet another page that opens up in A's iframe, which I will D.html.
Now, I can make B, C, and D show up in A's iframe in the manner I would like. What I'm trying to figure out how to do is to apply that bit of JavaScript that figures out the height of B.html when A loads and apply it to C and D and so forth so that the iframe is always just tall enough to show the entire document without having white space.
At this point, I'm in over my head and figure I will need to figure out how to rewrite the script and probably a big chunk of the page as well. Said code is available upon request, as is anything else needed to clarify any points I've made.
IFRAMEtag is not deprecated nor obsolete. It exists since HTML4.01 and still is in HTML5 standards. – Jay Oct 7 '12 at 10:11