Skip to content

Instantly share code, notes, and snippets.

@pbojinov
Last active December 24, 2015 11:09
Show Gist options
  • Select an option

  • Save pbojinov/6788608 to your computer and use it in GitHub Desktop.

Select an option

Save pbojinov/6788608 to your computer and use it in GitHub Desktop.
style.innerHTML fix for IE
var style = document.createElement('style'),
styleContent = 'body{background-color: red;}';
//IE 8 and below
if (style.styleSheet) {
style.styleSheet.cssText = styleContent;
}
else {
style.innerHTML = styleContent;
}
document.getElementsByTagName('head')[0].appendChild(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment