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 |
Difference between prop() and attr()? : jQuery Mobile
List the advantage of using minimized version of jquery?
Is jquery still relevant 2019?
What is the use of each function in jQuery?
Why do we need to go for JQuery?
How does the jQuery pushStack function work?
Explain the difference between onload() and document.ready() function used in jquery?
How to work with jQuery parent(), children() and siblings()?
How We Can Write Code Specific To Browser In Jquery?
Define the use of each function in jquery?
Explain cdn in jquery?
Explain some of the key concepts of good code organization patterns.