Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

there is the page with two iframes:

<iframe src="fr1.html" name="fr1"></iframe>
<iframe src="fr2.html" name="fr2"></iframe

iframes contain code:

<a href="next_fr1.html">next<a/>
<div>frame 1</div>

and

<a href="next_fr2.html">next<a/>
<div>frame 2</div>

respectively.

Pages next_fr1.html and next_fr2.html contain this code:

<a href="javascript:parent.frames.fr1.history.back();">back<a/>
<div>next frame 1</div>

and

<a href="javascript:parent.frames.fr2.history.back();">back<a/>
<div>next frame 2</div>

respectively.

On the first page i clicked:

  1. "next" in the first iframe
  2. "next" in the second iframe
  3. "back" in the first iframe

After 3rd click is back in the second iframe (as if back button in browser) and not back in the first iframe?

share|improve this question
Have you tried calling just history.back()? – adam Jun 15 '11 at 10:58
@adam, yes, same result – gevgeny Jun 15 '11 at 11:03

1 Answer

up vote 1 down vote accepted

The frames doesn't have separate histories, the page holds the history for all frames also.

When you call history.back it goes to the previous step in the history of the page, so it will go back in the frame where the last navigation occured.

share|improve this answer
is there some other way to make "back" for one frame ? – gevgeny Jun 15 '11 at 11:02
@Glum: You would have to store the history for the frames yourself, in an array in the main page. When you navigate in the frame you would add it to your history also. – Guffa Jun 15 '11 at 12:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.