Answers for "how to add jquery in js file"

2

how to add 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

Code answers related to "Javascript"

Browse Popular Code Answers by Language