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
You could just add a random parameter to the page URL in order to have the browser issue a new request.
So instead of using
window.location = "my.url/index.html";
use
window.location = "my.url/index.html?nocache=" + (new Date()).getTime();