<script>
tag. jQuery Get Started chapter gives clear description of how to download jQuery and install it. Development version
-> This version is "uncompressed" and it is used for testing & development of applications .Production version
-> This version is "compressed" and used for live website.script
tag.So one of the big benefits of using the CDN is it is possible to get caching benefits because many of the popular sites out there, instead of hosting jQuery locally, will grab it off a Microsoft or Google site. In this case, use the following HTML code.
[html]
<head>
<script src="jquery-1.12.2.min.js"></script>
</head>
[/html]