decomplexity
IS-IT--Management
I need to link from one page to another – either with an <a> href anchor or a window.location or similar – such that the second page is always checked first to see if has changed (and if so reloaded from the server) or, failing that, always reloaded.
location.reload(false) will check first before reloading; location.reload(true) will always bypass the cache and reload from the server. But both operate on the page in the current window.
Is there pls some variant which will do this as part of the linking process? I don’t want to link to a page and then have that page immediately reload itself.
location.reload(false) will check first before reloading; location.reload(true) will always bypass the cache and reload from the server. But both operate on the page in the current window.
Is there pls some variant which will do this as part of the linking process? I don’t want to link to a page and then have that page immediately reload itself.