I see here: Where do you include the jQuery library from? Google JSAPI? CDN? that this is a good way to include jQuery from a CDN (Google's):
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
As jQuery 2 was just released, I am planning on using:
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
...and the latest jQueryUI, too:
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
Note: These snippets, which are identical to the "canonical answer" on Stack Overflow linked to above, are from google's jQuery CDN page: https://developers.google.com/speed/libraries/devguide#jquery-ui
Now my question is: Where in a WebMatrix project should the references to the CDN go? In Web.Config? _AppStart.cshtml? _SiteLayout.cshtml? Or...???