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

Q867 Can I set the resolution of the users browser to the maximum available screen width and height?

You are here: irt.org | FAQ | JavaScript | Screen | Q867 [ previous next ]

Only in Netscape Navigator 4 or Internet Explorer 4 with:

<script language="JavaScript"><!--
if (window.screen) {
    window.resizeTo(screen.availWidth,screen.availHeight)
    window.moveTo(0,0);
}
//--></script>

Internet Explorer allows a window to be opened in fullscreen mode, see FAQ710 Is there a way to open a maximised window in Internet Explorer? for details.

©2018 Martin Webb