Skip to content

Instantly share code, notes, and snippets.

@kunukn
Last active August 29, 2015 14:11
Show Gist options
  • Select an option

  • Save kunukn/36595b1fb225136ab956 to your computer and use it in GitHub Desktop.

Select an option

Save kunukn/36595b1fb225136ab956 to your computer and use it in GitHub Desktop.
!function() {
// attach a css file to a webpage dynamically
var cssUrl = '//rawgit.com/kunukn/misc/master/src/temp/styles/whiteOnBlack.css'
var styleElement = document.createElement('link');
styleElement.rel = 'stylesheet';
styleElement.type = 'text/css';
styleElement.href = cssUrl;
document.getElementsByTagName('head')[0].appendChild(styleElement);
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment