I have the opposite problem of the accepted answer to this question: Ajax, back button and DOM updates
There, most people wanted Firefox to trigger the unload event when they returned to the page using the back button.
We manipulate the divs that are shown / hidden (moving around the tree) and go to another page. When you click "Back", Firefox uses its bfcache and displays the page as it was when you left (this is good). IE shows the page in its original state (this is bad). We want IE to behave like firefox and use its bfcache, are there any tricks to get this done?
(we do not use jQuery)
source share