/js/iframe.js |
---|
1,9 → 1,6 |
function sdt_autoResize(id){ |
var newheight; |
// wait a bit so the page can load |
newheight = document.getElementById(id).contentWindow.document.body.scrollHeight; |
document.getElementById(id).height = (newheight) + "px"; |
24,6 → 21,10 |
} |
} |
function sdt_delay(){ |
setInterval("sdt_autoResize('iframe-page')", 1000); |
} |
function sdt_getURL(id){ |
var url; |
var title; |