CDN is a Content Delivery System which are deployed in multiple data centers across the internet. It's goal is to serve end users. There are 3 popular jquery CDNs:
1. Google
2. Microsoft
3. jQuery.
Load jQuery from CDN:
Code to load jQuery Framework from Google CDN
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
Code to load jQuery Framework from Microsoft CDN
<script type="text/javascript"
src="http://ajax.microsoft.com/ajax/jquery/jquery-1.9.1.min.js">
</script>
Code to load jQuery Framework from jQuery Site
<script type="text/javascript"
src="http://code.jquery.com/jquery-1.9.1.min.js">
</script>
0 Comment(s)