Georg: iframe höhe in % (Netscape und Firefox)

Beitrag lesen

ich hab inzwischen ne Lösung, falls es jemanden interresiert:

ich hab ein Javascript, das mir immer die Höhe des iframes ausrechnet:

/* --------iFrame Höhe an Fenster anpassen ------------------------- */

function resize_iframe()
{

var tablemin = 400 // please write the minimum height of your frame here
var tableheight = 200 // the height of the table arround the i frame (height at the top + height at the bottom)
var tabletop = 0 //write in here the distance from the top

if  ((document.getElementById("iframe").height=
document.body.offsetHeight-tableheight)<tablemin){document.getElementById("iframe").height=tablemin}
else {document.getElementById("iframe").height=
document.body.offsetHeight-tableheight}
document.getElementById("iframe").offsetTop-tabletop;

}

// this will resize the iframe every time you change the size of the window.
window.onresize=resize_iframe;

//Instead of using this you can use:  <BODY onresize="resize_iframe()">

und beim iFrame muss dann noch stehen:
<iframe id='iframe' onload='resize_iframe()' frameborder="0" name=...  ></iframe>

Mfg
georg