I want to clear the browser cache (chrome) with a reload button for the users to click it and reload the page. I tried
location.reload(true);
This works fine in Firefox. But not in chrome. I searched for this if its possible. A lot of people write that i need the change meta tags but this do not work for me. I want that the users cache the site and only if they hit the reloaded button it should clear the cache.
I do not use a serviceworker so this
Cache.delete()
could not help me.
If it doesnt work for chrome or other browsers this would help me too. Thanks!