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 |
What are the different ways of using $.connect function in jquery?
explain bind() vs live() vs delegate() methods in jquery
How to check data type of any variable in jquery? : jquery mobile
Is jQuery a library for client scripting or server scripting?
What is jQuery CDN?
Write the code to define a requirejs module with its dependencies.
Define .siblings() method in jquery?
How to use jquery library in our asp.net project?
How to disable/enable an element in jquery?
Define "beforesend(xhr)" paremeter of jquery ajax method?
Is jQuery replacement of Java Script?
Tell me what is the use of .size() method in jquery?