onsa
12/16/2016 - 11:06 PM

Add an additional <style> to <head>.

Add an additional

var addCss = function(cssText) {
  var headTag = document.head || document.getElementsByTagName('head')[0];
  var styleTag = document.createElement('style');
  
  styleTag.type = 'text/css';
  if (styleTag.styleSheet) {
    styleTag.styleSheet.cssText = cssText;
  } else {
    styleTag.appendChild(document.createTextNode(cssText));
  }
  
  head.appendChild(styleTag);
}