Page is a not externally linkable
Xuefer - 5:29 pm on Jun 6, 2003 (gmt 0)
opera7 do not present window object of iframe if it's hidden <iframe name=... id=...>required text here</iframe> <script> setTimeout("alert(ifm.contentDocument);", 1000) // object [HTMLDocumentElement] </script>
ok, it's a display:none problem
var ifm = document.getElementById("iframeElementId");
alert(ifm.contentDocument); // null
if (self.iframeName == ifm) { // true for opera7 when iframe display:none
ifm.style.display = "block";
ifm.style.display = "none";
alert(ifm.contentDocument); // still null
alert(self.iframeName == ifm); // false
}