Here's an example from Bootstrap's "Getting Started" code:
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/js/bootstrap.min.js"></script>
Putting CSS and JS onto a CDN seems like pure lunacy. If the CDN goes down, so does your site. I gather that pointing to a CDN gives you the programmer the latest updates and all, but what if the maintainers break their own production code? I always download the necessary css and js and park them in my own directory. Whats the consensus?
TL;DR Why leave critical files such as JS and CSS to a CDN?