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 run an event handler only once in jQuery?
Explain which program is useful for testing jquery?
Why is only the first page of multi page document loaded? : jquery mobile
Can there be more than one ready function in jquery?
How to multiple AJAX requests be run simultaneously in jQuery?
Explain the difference between jquery's ready and holdready?
Why we need jquery mobile? : jquery mobile
What are the methods used to provide effects in jquery?
Explain .on()? : jquery mobile
How to increase cursor size in html body using jquery?
Explain jquery $.ajax() method?
Explain the difference between body onload() and document.ready() function? : jquery mobile
Can you please explain the difference between body onload() and document.ready() function? : jquery mobile
What methods used to provide effects?
Explain some of the key concepts of good code organization patterns.