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

Q826 Is there a way to get a pop-up window to pop-up automatically without having to be accessed via a link or button?

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

Yes, just use inline JavaScript to invoke the window objects open method:

<SCRIPT LANGUAGE="JavaScript"><!--
window.open('http://www.irt.org','windowName','height=480,width=640');
//--></SCRIPT>

©2018 Martin Webb