Just being curious, is window.location.reload(true)
just clearing the cache for the html page or for all related resources including js files and css as well?
I'm especially thinking of an single page application, where I'd like to ensure that asynchronously loaded parts of the application are served with the latest version. Is asynchronous code loaded from server and its cache cleared as well? (Cache busting is not expected answer!)
If it is just clearing the html page, is it anyhow possible to clear the full cache?