You are here: irt.org | FAQ | JavaScript | Window | Q227 [ previous next ]
After making sure that the opener property is defined correctly after loading the new window. Then the contents of the new window should look something like this:
<html>
<head>
<script language="JavaScript"><!--
function go(url) {
opener.parent.frameName.location.href = url;
}
//--></script>
</head>
<body>
<a href="javascript:go('apage.html')">load into the required frame of opener window</a>
</body>
</html>