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
What are the features of jquery used in web applications?
Explain how jquery works?
Can you please explain the difference between event.preventdefault and "return false"? : jquery mobile
Explain each() function in jquery?
Mention some advantages of jquery.
How to disable cut,copy and paste in TextBox using jQuery?
What is the difference between find and children methods in jquery?
How can we debug jQuery?
How to check variable is empty or not in jquery?
What is CDN?
What are the types of selectors in jQuery?
How to run an event handler only once in jQuery?
Why we need jquery?
How can an element be checked if it contains a specific class?
Write the code to define a requirejs module with its dependencies.