Skip to content

Instantly share code, notes, and snippets.

@mtmzorro
Created May 26, 2014 08:25
Show Gist options
  • Save mtmzorro/4d1ac424194b61d1439f to your computer and use it in GitHub Desktop.
Save mtmzorro/4d1ac424194b61d1439f to your computer and use it in GitHub Desktop.
function insertScript(url, attr) {
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.setAttribute('type', 'text/javascript');
if ( attr ) {
for ( var k in attr ) {
if ( attr.hasOwnProperty(k) ) {
script.setAttribute(k, attr[k]);
}
}
}
script.setAttribute('src', url);
head.appendChild(script);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment