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

Q1123 Is it possible to resize the window?

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

Try:
<script language="JavaScript"><!--
if (window.resizeTo) self.resizeTo(800,600);
//--></script>

or in frames:

<script language="JavaScript"><!--
if (window.resizeTo) top.resizeTo(800,600);
//--></script>

©2018 Martin Webb