Hi all,
I have a frameset and I'd like to call a function in one frame from another frame. The frame I'm in is called "middle", the function I want (setStatus) is in a frame called "lower". This works in IE:
top.lower.setStatus( "text" );
...but not in NN? I can do this:
var myElement = (parent.lower.document).getElementById("messageSpan"
myElement.innerHTML = "text";
...to directly access the same element ("messageSpan" that "setStatus()" does but I'd much rather call the function.
Does anyone know whether it's possible?
Any help much appretiated,
Gus
I have a frameset and I'd like to call a function in one frame from another frame. The frame I'm in is called "middle", the function I want (setStatus) is in a frame called "lower". This works in IE:
top.lower.setStatus( "text" );
...but not in NN? I can do this:
var myElement = (parent.lower.document).getElementById("messageSpan"
myElement.innerHTML = "text";
...to directly access the same element ("messageSpan" that "setStatus()" does but I'd much rather call the function.
Does anyone know whether it's possible?
Any help much appretiated,
Gus