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:
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?