P
pierre.bru
hi,
I encounter troubles with frames
witht he folowing script in the _top page
function walk(_frames) {
for(var i=0; i<_frames.length; i++) {
var frame = _frames;
alert(frame.name);
walk(frame.frames);
}
}
walk(window.frames);
I can walk thru all the frames and display their name. what I want to
do is to modify their 'onload' script to be notified when the frame
content has changed (no, I can not set onload='...' in the html) but
even if I set onload='top.myproc(...)', this top.myproc is never called

is it possible ?
TIA,
Pierre.
I encounter troubles with frames
witht he folowing script in the _top page
function walk(_frames) {
for(var i=0; i<_frames.length; i++) {
var frame = _frames;
alert(frame.name);
walk(frame.frames);
}
}
walk(window.frames);
I can walk thru all the frames and display their name. what I want to
do is to modify their 'onload' script to be notified when the frame
content has changed (no, I can not set onload='...' in the html) but
even if I set onload='top.myproc(...)', this top.myproc is never called
is it possible ?
TIA,
Pierre.