import jquery html code example

Example 1: how to import jquery in js file

var script = document.createElement('script');
script.src = 'https://code.jquery.com/jquery-3.4.1.min.js';
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);

Example 2: how to start using jQuery CDN

<script
  src="https://code.jquery.com/jquery-3.4.1.js"
  integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
  crossorigin="anonymous"
></script>

Example 3: html import jquery

<script src="jquery-3.4.1.min.js"></script>

Example 4: jquery import js file

$.getScript('ajax/test.js', function() {
    alert('Load was performed.');
});

Tags:

Html Example