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

Q767 How do I access a function in the popup windows opening window?

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

With:

<SCRIPT LANGUAGE="JavaScript"><!--
opener.functionName();
//--></SCRIPT>

Although you may need to define the opener property when opening the window:

<SCRIPT LANGUAGE="JavaScript"><!--
windowHandle = window.open(...)
if (!windowHandle.opener)
    windowHandle.opener = self;
//--></SCRIPT>

Feedback on 'Q767 How do I access a function in the popup windows opening window?'

©2018 Martin Webb