I know about the "latest" that can be used with a CDN, but I don't want to go that route - for example, version 2.0 of jQuery drops support for some still semi-popular browsers, and so I don't want the latest, just the newest in the "1.10" family.
I could swear that I read you could do this:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10/jquery.min.js"></script>
...and the newest version in that "family" would be added. That is, it might be 1.10.1 today, and 1.10.2 tomorrow, and it would automatically update for you.
However, that's apparently not the case; I tried that, and my page went all pear-shaped. I switched back to:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
...and it switched back to displaying fine. So: is there a way to accomplish what I want, without revisiting every web site every time a new minor version of jQuery is released?