Google News
logo
jQuery - Interview Questions
How to load jQuery from CDN ?
Code to load jQuery from two types of CDNs :
Google CDN : <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
Microsoft CDN : <script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
Advertisement