Skip to content

Instantly share code, notes, and snippets.

@jasonbronson
Last active March 29, 2018 15:35
Show Gist options
  • Save jasonbronson/66f736aee8ee43cfc10f3e5206d2ab65 to your computer and use it in GitHub Desktop.
Save jasonbronson/66f736aee8ee43cfc10f3e5206d2ab65 to your computer and use it in GitHub Desktop.
Insert CSS file #optimizely
var ss = document.createElement("link");
ss.type = "text/css";
ss.rel = "stylesheet";
ss.href = "/path/to/cssfile/goeshere.css";
document.getElementsByTagName("head")[0].appendChild(ss);
insert raw css style
$('head').append('<style>del.redline{color:green !important;}</style>');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment