You are here: irt.org | FAQ | JavaScript | Window | Q1208 [ previous next ]
If both pages are from the same server then in the popup window:
<body onUnload="opener.tellMomma()">
and in the opener window:
function tellMomma() {
alert('Child changed');
}
var WinId = window.open('popup.htm')
if (!WinId.opener) WinId.opener = self;