I have seen quite a few websites that do this (even stackoverflow itself) in my created HTML source, accessing a specific version of a CSS or JavaScript file with GET parameters. What is the point?
Example:
<link rel="stylesheet" href="http://sstatic.net/so/all.css?v=6230"> <script type="text/javascript" src="http://sstatic.net/so/js/master.js?v=6180"></script>
Is it just a way of consistency or best practice? Are customers with older cached versions simply forced to update their legacy version in their browsers?
javascript html css
Steven rosato
source share