I want to load a "new" url and force a refresh on that. If I do something like this:
window.open(url,"_self");
location.reload(true);
Then the the old URL will be reloaded. If I just use "open" the cache is used.
The URL from server is the same. For example:
currentURL = "index.html#/TheOldURL";
window.open("index.html#/TheNewURL","_self");
location.reload(true);
The code would do a reload of index.html#/TheOldURL
.
Is there any way to force a reload of the page but with the new URL?