Answer Posted / 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 |
Post New Answer View All Answers
How to execute jQuery code after the DOM is ready?
Explain the difference between .js and .min.js? : jquery mobile
When can you use jquery?
What is serialize() in jquery?
Why should I use jquery?
How do you check or uncheck a checkbox input or radio button?
Difference between prop() and attr()? : jQuery Mobile
Whether C# code behind can be called from jQuery?
How to set jquery mobile responsive table width to 100% width despite css styles? : jquery mobile
What is a cdn? : jQuery Mobile
Define data paremeter of jquery ajax method?
Why jQuery is better than JavaScript?
Name 3 available jquery plugins that bootstrap has in their query plugin library.
How to find all sibling elements in front of the current element using ?
What are the differences between size and length in jquery?