brigsM
10-01-2003, 08:42 PM
I’m trying to open a full screen window. No prob. With IE 6 but Netscape 7.1 maintains the Title Bar
I found this below makes Netscape 7.1 drop the Title Bar:
function openFs()
{
netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserWrite');
window.open('openfs.html','newwin','titlebar=no,width=' + window.screen.width+',height='+window.screen.height+',screenX=0,screenY=0');
}but creates an interim step of issuing an alert pop up advising the viewer that the script has ‘requested advanced privileges’ and gives the viewer the option to decline which cancels the full screen window.
Can anyone suggest an alternative ?
I found this below makes Netscape 7.1 drop the Title Bar:
function openFs()
{
netscape.security.PrivilegeManager.enablePrivilege('UniversalBrowserWrite');
window.open('openfs.html','newwin','titlebar=no,width=' + window.screen.width+',height='+window.screen.height+',screenX=0,screenY=0');
}but creates an interim step of issuing an alert pop up advising the viewer that the script has ‘requested advanced privileges’ and gives the viewer the option to decline which cancels the full screen window.
Can anyone suggest an alternative ?