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.

I'm noticing a strange behavior with Internet Explorer when my page is inside of an iframe. It seems that the iframe reloads itself when calling window.history.back(), even though only the hash in the URL should be changing. When the page is not inside of an iframe, it behaves properly and doesn't reload the page. Any idea why this is happening and how to prevent it?

I created a fiddle that will demonstrate this in IE9:

http://jsfiddle.net/peh96/5/

jsfiddle uses an iframe, so the behavior will be the iframe behavior. Clicking '#foo' and '#bar' will change the hash in the URL. Now clicking the 'BACK' link will trigger window.history.back(). Notice that the timestamp changes when you do that, indicating that the page is reloading.

Alternatively, if you load the iframe directly:

http://fiddle.jshell.net/peh96/5/show/

you'll notice that the timestamp doesn't change when click 'BACK'.

This is an IE issue only, as Chrome and Firefox is consistent whether inside of an iframe or not.

Any idea how to prevent this reload?

share|improve this question
We are also very bothered by this bug :( – Blackbird Jul 26 '12 at 14:09
@Blackbird, what is the workaround that you chose to solve this problem? – JohnnyO Jul 30 '12 at 22:16
none, unfortunately :( What about you? – Blackbird Jul 31 '12 at 7:56
Nothing yet. I'm thinking about building my own history stack and using it instead of window.history.back(). It's a bit ugly, but I don't know any way around it for IE. – JohnnyO Jul 31 '12 at 23:11
I have the same problem, seems to occur for IE > 8 – wosis Aug 28 '12 at 9:22

1 Answer

Well, when I choose Back command from context menu, it does the same. In IE10 you can use HTML5 State Management. I'm afraid in IE9 you must track hash history and than change it like this:

document.getElementById('back').addEventListener('click', function () {
    window.location.hash = 'abc';
}, false);

Edit

And what about this? When you call javascript:window.top.location.hash='bar', you can catch onhashchange event in parent window and then call scrollTo in iframe. But this works only in the same domain.

share|improve this answer
Thank you Václav. But I believe that adds another state into the history stack, is that correct? So while it will work, it breaks the back/forward states. – JohnnyO Jun 18 '12 at 14:06
That's true. I will try to figure out another solution. – Václav Dajbych Jun 18 '12 at 14:12
I'm a little bit confused, but it looks like jsfiddle.net/peh96/5 shows the example in quirks mode which may couse browser history ignores # links. When I open fiddle.jshell.net/peh96/5/show, it works as expected. Of course you have to update time when onhashchange occurs. Check my code: jsfiddle.net/ZGqHF/show – Václav Dajbych Jun 18 '12 at 14:34
Hi Václav, you may have misread my question. The problem occurs when inside of an iframe. As soon as you take your window outside of the iframe (which is what you're doing), IE behaves properly. I need a solution to prevent page load when going 'back' in an iframe. – JohnnyO Jun 19 '12 at 19:29
Oh, my fault, sorry. I use IE10 and it works there. In IE9 it behaves like you described. I originally thought the problem is elsewhere. It looks like it is a bug in IE9 and older. – Václav Dajbych Jun 20 '12 at 9:03
show 1 more comment

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.