Loading a javascript file within a javascript file

33 Views Asked by At

If I want to load another javascript file from a javascript file (ex. when I complete a level in a game), how would I do this?

(I'll add what I've tried in a minute)

1

There are 1 best solutions below

1
On

Try this function:

var getScript = function(filePath, loadedCallback) {
    var head = document.getElementsByTagName('head')[0],
        jsFileScriptTag = document.createElement('script');

    jsFileScriptTag.type = 'text/javascript';
    jsFileScriptTag.src = filePath;
    jsFileScriptTag.onreadystatechange = loadedCallback;
    jsFileScriptTag.onload = loadedCallback;
    head.appendChild(jsFileScriptTag);
};

//ussage
getScript('/js/myFile.js', function() {
    //do something when the script has loaded.
});