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

Q486 How do I open another window from within a child window?

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

Exactly the same as if it were a main window, just open another one up using: window.open(), for example:

<script language="JavaScript"><!--
myWindow = window.open('apage.html','windowName');
//--></script>

©2018 Martin Webb