Skip to content

Instantly share code, notes, and snippets.

@schickling
Created June 6, 2014 14:16
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 schickling/82dc62e0712b38b8d461 to your computer and use it in GitHub Desktop.
Save schickling/82dc62e0712b38b8d461 to your computer and use it in GitHub Desktop.
Minimal dynamic javascript loader
function loadScript(src) {
var el = document.createElement('script');
el.setAttribute('src', src);
el.async = false;
document.body.appendChild(el);
}
[
'jquery.js',
'main.js',
].forEach(loadScript);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment