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

Q1022 How can I remove the toolbars of the current window?

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

The following works well in Netscape Navigator 4+:

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

<FORM>
<INPUT TYPE=SUBMIT VALUE="Off" onClick="off()">
</FORM>
</HTML>

Internet Explorer 4 does not allow modification to current window chrome.

Feedback on 'Q1022 How can I remove the toolbars of the current window?'

©2018 Martin Webb