I have a website that I did some time ago, now they are requesting some new features, and I have made some changes to some javascript files, but when I publish clients that use IE, there are cache problems, so in the browser they have an old version of javascript. How can I clear the clientβs cache, so when they visit the website, they use the latest javascript files that I modify.
When you reference a javascript file, add the version number also at the end of the file as a query string. Sort of
<script src="yourjsfile?version=1.0" type="text/javascript"></script>
URL-, , .