In my web application I am setting window.location to navigate to a different page, but for some reason Firefox shows an old version of that page.
window.location
Usin
Add some time specific or random querystring value to the url. This will force the page to be reloaded.
var yourNewLoc = "http://newlocation.com/"; document.location = yourNewLoc + "?c=" + (new Date()).valueOf();