Created
January 12, 2018 01:16
-
-
Save AaronFlower/48d863b8d66d76d887cf70d7e8adeed0 to your computer and use it in GitHub Desktop.
javascript load css file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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