Skip to content

Instantly share code, notes, and snippets.

@mkalygin
Last active December 24, 2015 14:09
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 mkalygin/6810002 to your computer and use it in GitHub Desktop.
Save mkalygin/6810002 to your computer and use it in GitHub Desktop.
Add Script to DOM
function addScript(path) {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = path;
document.getElementsByTagName("head")[0].appendChild(script);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment