Skip to content

Instantly share code, notes, and snippets.

@khoand0000
Created October 15, 2015 10:37
Show Gist options
  • Save khoand0000/046fad880285c81b0a39 to your computer and use it in GitHub Desktop.
Save khoand0000/046fad880285c81b0a39 to your computer and use it in GitHub Desktop.
loadCss.js
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