Now on GitHub: https://github.com/patrickmarabeas/Font-Face-Font-Checker
Essentially the method works by comparing the width of a string in two different fonts. We are using Comic Sans as the font to test against, because it is the most different of the web safe fonts and hopefully different enough to any custom font you will be using. Additionally we are using a very large font-size so even small differences will be apparent. When the width of the Comic Sans string has been calculated, the font-family is changed to your custom font, with a fallback to Comic Sans. When checked, if the string element width is the same, the fallback font of Comic Sans is still in use. If not, your font should be operational.
I rewrote the method of font load detection into a jQuery plugin designed to give the developer the ability to style elements based upon whether the font has been loaded or not. A fail safe timer has been added so the user isn’t left without content if the custom font fails to load. That’s just bad usability.
I have also added greater control over what happens during font loading and on fail with the inclusion of classes addition and removal. You can now do whatever you like to the font. I would only recommend modifying the fonts size, line spacing, etc to get your fall back font as close to the custom as possible so your layout stays intact, and users get an expected experience.
Here's a demo: http://pulse-dev.com/files/stackoverflow/fontfacedelay/index4.htm
Throw the following into a .js file and reference it.
(function($) {
$.fn.fontChecker = function(config) {
var $this = $(this);
var defaults = {
font: $this.css("font-family"),
fontAwesome: false,
onLoad: '',
onFail: '',
testFont: 'Comic Sans MS',
testString: 'QW@HhsXJ',
testFontAwesome: 'icon-glass',
delay: 50,
timeOut: 2500
};
var config = $.extend(defaults, config);
var tester = document.createElement('span');
tester.style.position = 'absolute';
tester.style.top = '-9999px';
tester.style.left = '-9999px';
tester.style.visibility = 'hidden';
tester.style.fontFamily = config.testFont;
tester.style.fontSize = '250px';
if(config.fontAwesome === true) {
tester.className = config.testFontAwesome;
}
else {
tester.innerHTML = config.testString;
}
document.body.appendChild(tester);
var fallbackFontWidth = tester.offsetWidth;
tester.style.fontFamily = config.font + ',' + config.testFont;
function checkFont() {
var loadedFontWidth = tester.offsetWidth;
if (fallbackFontWidth === loadedFontWidth){
if(config.timeOut < 0) {
$this.removeClass(config.onLoad);
$this.addClass(config.onFail);
}
else {
$this.addClass(config.onLoad);
setTimeout(checkFont, config.delay);
config.timeOut = config.timeOut - config.delay;
}
}
else {
$this.removeClass(config.onLoad);
}
};
checkFont();
};
})(jQuery)
Apply a class where you use the custom font. The function will check the font-family that has been applied itself.
.checkme {
font-family: "Lobster"; //don't specify fallback font
font-size: 120px;
}
.pickme {
font-family: "FontAwesome";
font-size: 120px;
}
.fontLoading {
visibility: hidden !important;
//!important may or may not be necessary, depending on your CSS structure
}
.fontFail {
visibility: visible !important;
}
.anotherClass {
font-family: verdana !important;
font-size: 20px !important;
color: green !important;
}
<span class="checkme">Crafting</span>
<span class="checkme">Serious</span>
<span class="checkme">Websites</span>
<i class="icon-search pickme"></i>
<i class="icon-inbox pickme"></i>
<i class="icon-barcode pickme"></i>
Call it like following code block.
$(document).ready(function() {
$('.pickMe').fontChecker({
fontAwesome: true, //set to true if using Font Awesome (default is false)
onLoad: 'fontLoading', //call this class(es) when the font is loading (!important tag may be needed)
onFail: 'fontFail' //call this class(es) when the font has failed to load (!important tag may be needed)
});
$('.checkme').fontChecker({ //non Font Awesome font
onLoad: 'fontLoading',
onFail: 'fontFail anotherClass'
});
});
FONT-AWESOME and OTHER ICON FONTS
You will need to be sure you set fontAwesome: true in order to test Font Awesome. I haven't checked out other icon fonts, but they will need a similar patch. Leave a note here if you find a font that doesn't work with the above.