Skip to content

Instantly share code, notes, and snippets.

@jrobinsonc
Created July 10, 2017 20:00
Show Gist options
  • Save jrobinsonc/345d0ea40816e5723dabb8e0888a1c19 to your computer and use it in GitHub Desktop.
Save jrobinsonc/345d0ea40816e5723dabb8e0888a1c19 to your computer and use it in GitHub Desktop.
function addJS(id, url) {
if (document.getElementById(id)) {
return;
}
const fjs = document.getElementsByTagName('script')[0];
const js = document.createElement('script');
js.id = id;
js.src = url;
fjs.parentNode.insertBefore(js, fjs);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment