Answers for "js jquery include external script"

0

js jquery include external script

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

Browse Popular Code Answers by Language