Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Openning a maximized window

Status
Not open for further replies.

forrozeiro

Programmer
Sep 1, 2001
38
BR
Hi,

Is it possible to open an Internet Explorer 5 or latter window that fills the whole available screen ? In other words I'd like to force my new window to be created maximized.
And I have a unusual question too: Is it possible to disable the 'X' (close) button in the upper-right corner of the browser window ?
 
Discord,
Thank you for your sugestion, but the result of using fullscreen=1 isn't exactly what I want. The new window covers the Windows taskbar.
I've found a fairly good solution:
var popup =
window.open( "test.html" , "bla" );
popup.moveTo(0,0);
popup.resizeTo(screen.availWidth,screen.availHeight);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top