Skip to content

Instantly share code, notes, and snippets.

@kaisermann
Created September 28, 2016 00:48
Show Gist options
  • Save kaisermann/9053271d4469560ed63cf33adb10aca6 to your computer and use it in GitHub Desktop.
Save kaisermann/9053271d4469560ed63cf33adb10aca6 to your computer and use it in GitHub Desktop.
function writeCSS(css) {
var head = document.head || document.getElementsByTagName('head')[0],
style = document.createElement('style');
style.type = 'text/css';
if(style.styleSheet) {
style.styleSheet.cssText = css;
} else {
style.appendChild(document.createTextNode(css));
}
head.appendChild(style);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment