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

Q710 Is there a way to open a maximised window in Internet Explorer?

You are here: irt.org | FAQ | JavaScript | Window | Q710 [ previous next ]

You can open a new window and set fullscreen=yes:

window.open("page.html","winname","fullscreen=yes")

To actually open a maximised window instead of a fullscreen window you would need to use something similar to:

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

Feedback on 'Q710 Is there a way to open a maximised window in Internet Explorer?'

©2018 Martin Webb