One solution to this problem is to force a resource reload to avoid caching. You can get this URL change with http get parameters:
Edit:
<script src="myscripts.js"></script>
at
<script src="myscripts.js?newversion"></script>
If newversion can be any string, as it will be ignored. A useful option is to use the date or version of your code.
I found this workaround to be especially useful when I ran into this problem and wanted all clients (and not just my own browser!) To run a new version of the code.
airos source
share