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

Q1680 How can I dock one popup window to the side of another?

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

Try:

<script language="JavaScript"><!--
window.open('pop1.html','pop1','top=0,left=0,width=200,height=300');
window.open('pop2.html','pop2','top=0,left=201,width=200,height=300');
//--></script>

©2018 Martin Webb