os0x (owner)

Revisions

gist: 52682 Download_button fork
public
Public Clone URL: git://gist.github.com/52682.git
Embed All Files: show embed
addCSS.js #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function addCSS (css){
if (document.createStyleSheet) { // for IE
var sheet = document.createStyleSheet();
sheet.cssText = css;
return sheet;
} else {
var sheet = document.createElement('style');
sheet.type = 'text/css';
var _root = document.getElementsByTagName('head')[0] || document.documentElement;
sheet.textContent = css;
return _root.appendChild(sheet).sheet;
}
}