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 |
List the advantage of using minimized version of jquery?
Explain .delegate()? : jquery mobile
Why do we use jquery? : jquery mobile
Define type paremeter of jquery ajax method?
What does the jQuery migrate function do?
Can we execute/run multiple Ajax request simultaneously in jQuery? If yes, then how?
How to debug jQuery?
Why use jQuery filter() Methods?
What are the four parameters used for jQuery Ajax method?
What are selectors in jquery?
Name some of the methods of jquery used to provide effects?
Explain the difference between body onload() and document.ready() function? : jquery mobile