Skip to content

Instantly share code, notes, and snippets.

@AaronFlower
Created January 12, 2018 01:16
Show Gist options
  • Save AaronFlower/48d863b8d66d76d887cf70d7e8adeed0 to your computer and use it in GitHub Desktop.
Save AaronFlower/48d863b8d66d76d887cf70d7e8adeed0 to your computer and use it in GitHub Desktop.
javascript load css file
let link = document.createElement('link')
link.href = '/css/filename.css'
link.type = 'text/css'
link.rel = 'stylesheet'
link.media = 'screen,print'
document.getElementsByTagName( "head" )[0].appendChild( link )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment