Skip to content

Instantly share code, notes, and snippets.

@htakeuchi
Last active February 2, 2016 22:13
Show Gist options
  • Save htakeuchi/0e50daf0e91fa15defa8 to your computer and use it in GitHub Desktop.
Save htakeuchi/0e50daf0e91fa15defa8 to your computer and use it in GitHub Desktop.
スタイルシートを動的に読み込む
function addStyleSheet(href) {
var link = document.createElement("link");
link.setAttribute("rel", "stylesheet");
link.setAttribute("type", "text/css");
link.setAttribute("href", href);
var head = document.getElementsByTagName("head")[0];
head.appendChild(link);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment