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

Q1023 How can I retrieve the toolbars of the current window which were removed by the previous example?

You are here: irt.org | FAQ | JavaScript | Window | Q1023 [ previous next ]

The following works well in Netscape Navigator 4+:

<SCRIPT LANGUAGE="JavaScript"><!--
function on() {
    window.open('','_top','menubar=1,location=1,toolbar=1,personalbar=1,status=1,scrollbars=1');
}
//--></SCRIPT>

<FORM>
<INPUT TYPE=SUBMIT VALUE="On" onClick="on()">
</FORM>
</HTML>

Feedback on 'Q1023 How can I retrieve the toolbars of the current window which were removed by the previous example?'

©2018 Martin Webb