Answers for "import script jquery"

4

html how to add jquery

<!--You can insert Jquery into HTML with the <script> tag in the <head>-->
<!--Insert the next line of code into your <head> tags.-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <!-- jquery (help with javascript) -->
Posted by: Guest on June-21-2020
1

import jquery into 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 December-09-2020
0

jquery import js file

$.getScript('ajax/test.js', function() {
    alert('Load was performed.');
});
Posted by: Guest on March-03-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language