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 |
Can we use jQuery to make ajax request?
How can we apply css in div using jquery?
Which is the starting point of code execution in jQuery?
What were the biggest challenges of getting the 1.7 release out there?
explain bind() vs live() vs delegate() methods in jquery
What is the use of jquery .each() function?
What is the starting point of code execution in jquery?
Does events are also copied when you clone any element in jQuery?
What does $("div") will select?
How to get/set the html contents of an element using jQuery?
List browser related issues for jquery?
Please tell us that is jquery knockkout intended to compete with jquery or prototype or work with it?