Skip to content

Instantly share code, notes, and snippets.

@jp26jp
Created December 5, 2018 07:22
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 jp26jp/a1d4f815e928a35f87067b7f5f201714 to your computer and use it in GitHub Desktop.
Save jp26jp/a1d4f815e928a35f87067b7f5f201714 to your computer and use it in GitHub Desktop.
Add a javascript file to the body of the html document
function addScript(url) {
const tag = document.createElement("script")
tag.type = "text/javascript"
tag.src = url
document.body.appendChild(tag)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment