Is it possible to use window.opener in frames...
////////////
main.htm ->
window.open('page.htm','page');
function al()
{
alert('hello');
}
////////////
page.htm ->
<frameset cols="40,*">
<frame src="left.htm">
<frame src="right.htm">
</frameset>
////////////
right.htm ->
window.opener.al(); //this doesn't work... it's there so you get the picture...
////////////
I was thinking if something like window.opener.opener.al() possible could work...
////////////
main.htm ->
window.open('page.htm','page');
function al()
{
alert('hello');
}
////////////
page.htm ->
<frameset cols="40,*">
<frame src="left.htm">
<frame src="right.htm">
</frameset>
////////////
right.htm ->
window.opener.al(); //this doesn't work... it's there so you get the picture...

////////////
I was thinking if something like window.opener.opener.al() possible could work...

Comment