Flyzone schreef:
Quote:
Hello, I have a page defined like this:
>
<html>
<frameset>
<frame src="./topone.pl">
<frameset>
<frame src="./frame1.pl">
<frame src="./frame2.pl">
</frameset>
</frameset>
</html>
>
Then I click in one link in the first page and the mainpage, frame1
and frame2 change the page show.
The problem is that when pressing the "back" action, just the frame2
change, than I need to press other two times the "back" to arrive in
the original page/frames.
Hi,
Yes, that is because the browser thinks you want to go back if you hit
the BACK button.
What if you actually wanted to go back only from your last click in some
frame, and the browser decides to go back in all frames? What is some of
those frames don't have a history to go back to?
What you see is normal and desired behaviour.
Quote:
>
Does exist a back action (-3)? I tried the code:
window.onback = history.back(-3);
without success (FF e IE7)
>
Any help will be appreciate
Thanks in advance
If you MUST sync your frames somehow, you'll have to build that
explicity in JavaScript. But of course your pages will fail when a user
has it disabled.
That is about 10% of the websurfers I think.
Warning: Thomas Pointedears once told me that 138% of the statistics you
find on the web are flawed. ;-)
Solution?
Don't use frames and avoid this whole mess. Or make a working syncing
mechanism in JavaScript.
Regards,
Erwin Moller
--
"There are two ways of constructing a software design: One way is to
make it so simple that there are obviously no deficiencies, and the
other way is to make it so complicated that there are no obvious
deficiencies. The first method is far more difficult."
-- C.A.R. Hoare