firefox iframe history - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:47:01Z http://stackoverflow.com/feeds/question/1081641 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081641/firefox-iframe-history 0 firefox iframe history pkario 2009-07-04T06:18:54Z 2009-07-04T06:18:54Z <p>In a web app we use IFRAME to let users select items for the parent page.</p> <p>The problem is that FIREFOX (3.5) adds a copy of the same (parent) page to history each time IFRAME is opened.</p> <p>The web app is using history.back() to go from parent page to one that called that page.</p> <p>We can fix that by passing the "back" page as parameter from caller to callee.</p> <p>Still BACK button remains broken (the user presses back button but remains in same page).</p> <p>The other problem that is created is that we want some pages out of history. We do not want the user to go <strong>back</strong> to an <strong>INSERT</strong> page.</p> <p>This is easily done with location.replace on the <strong>INSERT</strong> page when finished, but impossible on FIREFOX with many entries of the same <strong>INSERT</strong> page.</p>