How to load jQuery from CDN?
Answer / chaitanya
Below is the code to load jQuery from all 3 CDNs.
Code to load jQuery Framework from Google CDN
Hide Copy Code
<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
Hide Copy Code
<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(EdgeCast CDN)
Hide Copy Code
<script type="text/javascript"
src="http://code.jquery.com/jquery-1.9.1.min.js">
</script>
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain jquery connect?
Is it possible to hold or delay document.ready execution for sometime?
What is a jquery ajax?
How to call a method inside code-behind using jquery?
Explain the difference between body onload() and document.ready() function? : jquery mobile
How can we apply css in odd childs of parent node using jquery library?
How does jquery mobile theming work? : jquery mobile
What is the difference between .js and .min.js?
Does jquery 2.0 supports ie? : jquery mobile
Explain some features of jquery knockout?
What are features of jquery or what can be done using jquery?
What is the difference between jquery's ready and holdready?