luk3yx.github.io/js/loadscript2.js

8 lines
249 B
JavaScript

// Copyright 2016 by luk3yx.
// All rights reserved.
function loadScript(script) {
scriptElement = document.createElement('script');
scriptElement.setAttribute("src", "/js/" + script + ".js");
document.head.appendChild(scriptElement);
}