Possible Duplicate:
Hosted version of Twitter Bootstrap (maybe Google?)
As of now I'm loading my jquery from google like this.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
Twitter Bootstrap is the most popular project in github. I think its getting popular day by day and I'm pretty sure bootstrap used by many sites.
If there is a centralised api to load bootstrap, the page will obviously load faster because it could potentially already be cached in client's browser just like jQuery.
Something like this
<link rel="stylesheet" type="text/css" href="http://bootstrap.twitter.com/2.2.2/bootstrap.min.css" />
<script src="//bootstrap.twitter.com/2.2.2/bootstrap.min.js"></script>
Is it possible?