Jeg har fået en iframe i javascript
Jeg kan bare ikke såtte højden på framen...
En der ved hvordan man sætter den så svar gerne Tjek koderne til den -v-
Koden i index.html:
<iframe id="midframe" src="home.html" marginwidth="0" width="98.5%" scrolling="no" frameborder="0"></iframe>
Koden i iframe.js
window.onload = function() {
var f = document.getElementById("midframe");
function resize() {
var h = "";
var w = "";
if (f.contentDocument) {
h = f.contentDocument.documentElement.offsetHeight + 40 + "px";
// can't find anything for Opera and Firefox that works for the width. OffetWidth doesn't work right either.(f.contentDocument.documentElement,"").getPropertyValue("width");
} else if (f.contentWindow) {
h = f.contentWindow.document.body.scrollHeight + 10 + "px";
} else {
return;
}
f.setAttribute("height",h);
f.parentNode.setAttribute("height",h);
}
if (window.addEventListener) {
f.onload = resize;
} else if (f.attachEvent) {
f.attachEvent("onload", resize);
} else {
return;
}
resize();
}