You are here: irt.org | About | Feedback | 1231 [ previous next ]
Feedback on:
irt.org FAQ Knowledge Base Q652
Sent by
Riccardo Scussat on May 15, 2000 at 17:57:24:
Worth:
Worth reading
Comments:
I tested your code snippet on Netscape Navigator and it seems
not work:
if in a two-frames page, in the
first (right) frame code I write:
top.frames.left.document.open(); top.frames.left.document.write('<BODY COLOR="white">'); top.frames.left.document.close();
top.frames.left.document.open();
top.frames.left.document.write('HELLO');
top.frames.left.close();
the string 'HELLO' is simply appended to the existing
left frame layout.
On MSIE it works fine, but I
discovered that your script is
not necessary as IE automatically
clears the frame if a write() is
issued after a close() on that
frame.
Any hint?