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 |
Tell me what does $("div") will select? : jquery mobile
What is the difference between text() and html() in jquery?
What is the advantage of using the minified version of jquery rather than using the conventional one?
How to redirect to another page using jquery?
Why jquery?
Jquery can be used in what scenarios?
What does $("div") will select?
How to increase cursor size in html body using jquery?
What are jquery selectors?
How can you disable jquery animation?
How can you add a jquery library in your project?
What features of jquery, has been used in web applications?