import jquery code example
Example 1: jquery cdn google
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
Example 2: import $ from 'jquery'
import * as $ from 'jquery'
Example 3: javascript import jquery
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
Example 4: how to use jquery
<!-- First either download, or use CDN and reference it -->
<!-- Here we grab it from a CDN -->
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"></script>
<!-- Lets say we have some <p>, with simple text
we give it an id -->
<p id="example">Hello, world</p>
<!-- We shall now play around with this element using jQuery -->
<script type="text/javascript">
var e = document.getElementById('example');
var ej = $('#example');
$('#example').text("Goodbye everybody, I've got to go");
</script>
Example 5: 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 6: jquery vdn
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>