1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
++++WORKS+++++
function resizeToContent(){
var x =0;
var y =this.document.body.scrollHeight;
while (x < y){
x+=1;
}
x +=20;
parent.document.getElementById("dynamIframe").height=x;
}
----DOES NOT WORK-----
function resizeToContent(){
parent.document.getElementById("dynamIframe").height=int(this.document.body.scrollHeight);
}
|