Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q1606 How can I open a full screen window without any chrome in Netscape Navugator?

irt.org | Knowledge Base | JavaScript | Window | Q1606 [ previous next ]

Q1606 How can I open a full screen window without any chrome in Netscape Navugator?

The following requires exta priviledges from the user to be granted:

<html>
<head>

<title>Clean Window</title>

<script language="JavaScript1.2"><!--
function doit() {
  if (document.layers) {
    netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserWrite');
    window.open('nocrome.htm','newwin','titlebar=no,width=' + window.screen.width+',height='+window.screen.height+',screenX=0,screenY=0');
  }
}
//--></script>
</head>

<body>
<a href="javascript:doit()">Open nocrome</a>
</body>

</html>

Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb and Michel Plungjan
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.