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

Q1128 Can I hide (minimise) a window?

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

In Netscape you will be warned before making the window smaller than 100*100 pixels and you would need to sign the script:

<script language="JavaScript"><!--
if (document.layers) {
    netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserWrite');
    window.resizeTo(1,1);
}
//--></script>

Feedback on 'Q1128 Can I hide (minimise) a window?'

©2018 Martin Webb