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

Q1714 How can I resize the opener of a popup window?

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

Try:

<script language="JavaScript"><!--
if (opener && !opener.closed)
  opener.resizeTo(640,480);
//--></script>

©2018 Martin Webb