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

Q733 What does hotkeys=no actually disable when used when opening a new window? ?

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

hotkeys - disables most keyborad shortcuts for windows with no menubar. Only supported on Netscape Navigator 4, and requires UniversalBrowserWrite privilege.

<SCRIPT LANGUAGE="JavaScript1.2"><!--
if (document.layers) {
    // request privilege
    netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserWrite');

    window.open('http://www.irt.org/','windowName','hotkeys=no');
}
//--></SCRIPT>

Take a look at the following URL for information on signing JavaScript code http://developer.netscape.com/library/documentation/signedobj/signtool/.

©2018 Martin Webb