ChrisQuick
Programmer
I am opening a window and using writeln to write some frame tags. Then I reference the first frame and try to write to it. Problem: This works fine in IE 5.0, and 5.5. It also works in netscape 4.76 BUT blows up in NS 6.1.
Here is the error: Win1.document has no properties line 172.
Code:
Besides just saying "well netscape stinks" or "netscape sux", does anyone have any idea how to work around this? cquick@callingpost.com
Geographic Information System (GIS), ASP, some Oracle
Here is the error: Win1.document has no properties line 172.
Code:
Code:
var NewFramesWin = openPageTop(appDir + "text.htm","QueryWindow","scrollbars=yes,resizable=yes,dependant=yes")
NewFramesWin.document.writeln('<html><head><title>' + titleList[7] + '</title></head>');
NewFramesWin.document.writeln('<FRAMESET COLS="130,*" FRAMEBORDER="0" FRAMESPACING="0" BORDER=0>');
NewFramesWin.document.writeln(' <FRAME NAME="NavFrame" SRC="' + appDir +'blank.htm" MARGINWIDTH="5" MARGINHEIGHT="0" SCROLLING="no" FRAMEBORDER="0" NORESIZE>');
NewFramesWin.document.writeln(' <FRAME NAME="ResultsFrame" SRC="' + appDir +'blank.htm" MARGINWIDTH="5" MARGINHEIGHT="0" SCROLLING="yes" FRAMEBORDER="0" NORESIZE>');
NewFramesWin.document.writeln('</FRAMESET>');
NewFramesWin.document.writeln('</html>');
NewFramesWin.document.close();
var Win1 = NewFramesWin.frames[0];
Win1.document.open(); <--- line 172
Besides just saying "well netscape stinks" or "netscape sux", does anyone have any idea how to work around this? cquick@callingpost.com
Geographic Information System (GIS), ASP, some Oracle