Answers for "import other script in javascript"

23

how to import a JavaScript file

<script type="text/javascript" src="path-to-javascript-file.js"></script>
Posted by: Guest on March-08-2020
2

javascript include a js file from another

// jQuery
$.getScript('/path/to/imported/script.js', function()
{
    // script is now loaded and executed.
    // put your dependent JS here.
});
Posted by: Guest on September-17-2020

Code answers related to "import other script in javascript"

Browse Popular Code Answers by Language