I have a page with multiple iframes on it. Each iframe is invoking some javascript which dynamically writes new iframes into the parent window's document.
This works fine on first page load. But if the page is refreshed in IE8 (and earlier) one of the dynamically generated iframes will get loaded from cache into one of the hard-coded slots on the parent page. See the following example:
http://www.risingspiral.com/ie8-iframe-refresh/
On refresh in IE8 (may take a couple tries) the Spot 2_ will get loaded from cache into spot3.html's iframe. spot3.html will not get called at all.
I've already protected against the IE dynamic iframe refresh issue described here:
http://buildingonmud.blogspot.com/2010/06/ie-iframe-refresh-and-back-button.html
But there still seems to be a problem. It's also interesting that the problem always seems to occur (at least for me) between the iframes spot2.html and spot3.html.
I've tried a ton of different configurations to try and get around this issue. So, I'm hunting for new suggestions.
Any ideas?