I thought I was having an issue with my javascript being cached and not updated even with an updated version tag, like:
<script type="text/javascript" src="lib/myScript.min.js?v=3"></script>
But I realized that the problem is with my html file is being cached... so the browser doesn't even know there is a new script file.
I don't want to disable caching, but isn't there a way to let the browser know it doesn't have the most up-to-date html file? (And is this something I'd put in my html file, or on my apache2 server?)