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?'