When I try to load Javascript files using CDN it doesn't work. I get status "Abort"
This is what my code look like (using ASP.Net MVC 3):
<script src="//ajax.aspnetcdn.com/ajax/jquery/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="<%= Url.Content("~/Scripts/jquery-ui-1.8.11.min.js") %>" type="text/javascript"></script>
This is what Firebug says:
When I right click the GET jquery-1.7.1.min.js and selects "Copy location" it returns
http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.7.1.min.js
which is perfectly valid
// Martin