Skip to content

Instantly share code, notes, and snippets.

@edwinwebb
Created February 1, 2018 05:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edwinwebb/eb91d597e43d9f31f91a19357fef3148 to your computer and use it in GitHub Desktop.
Save edwinwebb/eb91d597e43d9f31f91a19357fef3148 to your computer and use it in GitHub Desktop.
load css from cdn with javascript
const CSSURL = '//cdn.rawgit.com/milligram/milligram/master/dist/milligram.min.css'
const style = document.createElement('link');
style.setAttribute('href', CSSURL);
style.setAttribute('rel', 'stylesheet');
document.body.appendChild(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment