faqts : Computers : Programming : Languages : JavaScript : Document

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

13 of 25 people (52%) answered Yes
Recently 4 of 10 people (40%) answered Yes

Entry

How can I get my page to open maximized (not full screen)?

Mar 5th, 2002 09:15
Ben C, Joćo Martins,


This code won't maximize your window, but it will take up all the 
screen area available.
// detect browser
if(document.all) browser = "IE";
if(document.layers) browser = "NN4";
if(document.getElementById && window.sidebar) browser = "NN6";
if(navigator.appName =="Opera") browser = "Opera";
if( browser != "NN4" ) {
   window.moveTo(0,0);
   window.resizeTo(screen.availWidth,screen.availHeight);
}