Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q652 How can I clear the contents of another frame?

You are here: irt.org | FAQ | JavaScript | Frame | Q652 [ previous next ]

You can attempt this:

<SCRIPT LANGUAGE="JavaScript"><!--
function cls(what) {
    what.document.open();
    what.document.write('<BODY COLOR="WHITE">');
    what.document.close();
}

cls(parent.otherFrameName);
//--></SCRIPT>

Feedback on 'Q652 How can I clear the contents of another frame?'

©2018 Martin Webb