Answers for "how to import jquery in javascript"

1

html include jquery

<!-- Wrap inside the head tag -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
Posted by: Guest on September-29-2020
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);
Posted by: Guest on March-20-2020
2

javascript import jquery

//add this line somewhere in the html
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
Posted by: Guest on November-29-2020

Code answers related to "how to import jquery in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language