Skip to content

Instantly share code, notes, and snippets.

@grej
Created November 15, 2012 04:03
Show Gist options
  • Save grej/4076576 to your computer and use it in GitHub Desktop.
Save grej/4076576 to your computer and use it in GitHub Desktop.
Load external js onto page
(function (document, undefined){
promptLoc = prompt('library location', "http://www.somewhere.org/lib.js");
var script = document.createElement("script");
// any script
script.src = promptLoc;
document.body.appendChild(script);
}(document));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment