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.

Is there a way using JS of accessing the history state of the previous page when a user clicks the 'back' button?

share|improve this question
Do you load your content dynamically? – OptimusCrime Nov 14 '11 at 12:12
Yes. I've set up to use the HTML5 history API to navigate, but I have someting in the state that I need to use to ensure that an effect is correctly (but not unnecessarily) fired when the user clicks 'back' – David Gard Nov 14 '11 at 12:15

1 Answer

up vote 1 down vote accepted

Unfortunately you're not allowed to read previous on next states. All you can do is reading current state, using history.state.

But if it all happens on the same page without reloads, why don't you save data on you own stack. You can use array for this - just save the same data to array and new state.

share|improve this answer

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.