I want to access the iframe my page is in and resize it. By the way I'm doing it in javascript.
It's something like parent and height or offsetHeight.
<iframe src="mypage.asp" height="400" width="400" ></iframe>
And in mypage.asp I do sth similar like this:
var h = // new height;
parent.height = h;
But it ain't all right? Somebody else who knows more?