Skip to content

Instantly share code, notes, and snippets.

@h2non
Last active January 1, 2016 18:19
Show Gist options
  • Save h2non/8182829 to your computer and use it in GitHub Desktop.
Save h2non/8182829 to your computer and use it in GitHub Desktop.
function loadScript(src) {
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = src;
head.appendChild(script);
}
loadScript('fucking/ie8/script.js');
@felixzapata
Copy link

fucking? Why? XD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment