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 |
How can you get the type of arguments passed to a function?
List a few features of jquery mobile? : jQuery Mobile
Why jquery?
List the basic selectors in jquery?
Explain the advantages of jquery?
What is the use of val() method in jquery?
What is method chaining in jquery and what are the advantages?
What is jquery.length? : jquery mobile
How can we show and hide an element via jquery?
What is the use of delay() method in JQuery?
How to run an event handler only once in jQuery?
What does $("div.parent") will select?