Skip to content

Instantly share code, notes, and snippets.

@kouphax
Created October 15, 2010 14:46
Show Gist options
  • Save kouphax/628300 to your computer and use it in GitHub Desktop.
Save kouphax/628300 to your computer and use it in GitHub Desktop.
function loadCss(url) {
var link = document.createElement("link");
link.type = "text/css";
link.rel = "stylesheet";
link.href = url;
document.getElementsByTagName("head")[0].appendChild(link);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment