Also sprach M. Magistri:
> I have a 3-frame page: left, top and main. When i push the back
> browser button, change only main frame.
> I would like to know, how to make "change-able" the others two
> frames....
By calling a JavaScript function when the new main frame is loaded. That
function will then load the other frames. Something like
<body onload="parent.frames.left.location.replace('newle ft.html');">
Of course this will not work if the user has JavaScript disabled. But then:
if ALL the frames are to be changed by a click, then even I (!) cannot see
ANY reason for using frames here...
|