
July 5th, 2002, 01:32 PM
|
|
Moderator
|
|
Join Date: Jun 2002
Location: Oakville - Ontario - Canada
Posts: 12
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
As far as I am aware, there is no way of specifically hiding the close button on the browser window, however if you hide the titlebar you will be able to hide all the buttons on it. Do this through the "window.open" command in javascript.
for example;
window.open("titlebar.html", "_blank", "titlebar=0");
this specifies whether to display a title bar for the window. In Internet Explorer, this feature is ignored unless the caller is an HTML Application or a trusted dialog box. In Navigator, setting this feature to no (or 0) requires a signed script. 
|