Is it better to reference jQuery
file inclusion through jQuery CDN
for better performance?
Like
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
Or
Is it better to reference stored jQuery
file in our project?
Like
<script type="text/javascript" src="/js/jQuery.min.js"></script>
As jQuery CDN
link handles caching, Does it improve performance more than jQuery
file included from our project?