![]() |
|
|
+ Search |
![]()
|
Aug 29th, 2000 07:29
Martin Honnen, Chris Durkin,
function historyGoForLeafFrames (n, frame) {
if (!frame)
frame = window;
if (frame.frames.length == 0)
frame.history.go(n);
else for (var f = 0; f < frame.frames.length; f++)
historyGoForLeafFrames(n, frame.frames[f]);
}
Call for example as
historyGoForLeafFrames(0)
to reload all leaf frames