Skip to content

Instantly share code, notes, and snippets.

@theswedishdev
Last active April 6, 2017 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theswedishdev/ed2b4605a0163bcc02bd71277a0bd8ac to your computer and use it in GitHub Desktop.
Save theswedishdev/ed2b4605a0163bcc02bd71277a0bd8ac to your computer and use it in GitHub Desktop.
function loadJS(file) {
let jsElement = document.createElement("script");
jsElement.type = "application/javascript";
jsElement.src = file;
document.body.appendChild(jsElement);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment