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

Q996 How can I open a different popup window each day of the month, e.g. 30.htm for the 30th?

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

Try:

<script language="JavaScript"><!--
var windowHandle = window.open((new Date()).getDate() + '.html','windowName','width=640,height=480');
//--></script>

©2018 Martin Webb