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

Q781 Can you open a hidden window?

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

No. You can open a window and then send it to the background by using the blur() method:

<SCRIPT LANGUAGE="JavaScript"><!--
myWindowHandle = window.open(windowUrl,windowName,windowAttributes);

myWindowHandle.blur()
//--></SCRIPT>

Feedback on 'Q781 Can you open a hidden window?'

©2018 Martin Webb