Created
April 24, 2016 13:38
-
-
Save AllThingsSmitty/716e8b64f04fbf4d21c3c63e54d4a487 to your computer and use it in GitHub Desktop.
Dynamically check if Font Awesome CDN loaded
This file contains 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
function css(element, property) { | |
return window.getComputedStyle(element, null).getPropertyValue(property); | |
} | |
window.onload = function () { | |
var span = document.createElement('span'); | |
span.className = 'fa'; | |
span.style.display = 'none'; | |
document.body.insertBefore(span, document.body.firstChild); | |
if ((css(span, 'font-family')) !== 'FontAwesome') { | |
// add a local fallback | |
} | |
document.body.removeChild(span); | |
}; |
I guess default should be fine... ๐ Thanks Matt, really nice! ๐
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cool idea, thanks.
BTW, foNTweSOMe can be called with any case. So you should take the font-family and
toLowerCase()
then compare against the lowercasefontawesome
.