Обработчик OnLoad для другого фрейма
Есть два фрейма:
index.html
<frameset rows="50%, 50%" name="fs">
<frame name="f1" src="1.html">
<frame name="f2" src="2.html">
</frameset>
1.html
<script language="javascript">
function OnFrameLoad() {
alert(parent.f2.window.location.href);
}
function OnMainLoad() {
returnCode = parent.f2.window.attachEvent("onload", parent.f1.OnFrameLoad);
//alert(returnCode);
parent.f2.window.location.href = '3.html';
}
</script>
<body onload="java script: OnMainLoad();">
</body>
2.html, 3.html
Просто статический текст
Так вот returnCode = true, но обработчик так и не вешается.
Что не так?