Skip to content

Instantly share code, notes, and snippets.

@micmath
Created January 25, 2010 11:18
Show Gist options
  • Save micmath/285796 to your computer and use it in GitHub Desktop.
Save micmath/285796 to your computer and use it in GitHub Desktop.
head = document.getElementsByTagName('head')[0];
link = document.createElement('link');
link.href = src;
link.type = 'text/css';
link.rel = 'stylesheet';
head.insertBefore(link, head.firstChild);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment