Skip to content

Instantly share code, notes, and snippets.

@KingScooty
Created February 3, 2015 11:32
Show Gist options
  • Save KingScooty/a419eb8a4f820b5f60f2 to your computer and use it in GitHub Desktop.
Save KingScooty/a419eb8a4f820b5f60f2 to your computer and use it in GitHub Desktop.
Make Typekit non-blocking for smaller screens
<script>
//Replace this with your mobile Typekit code
var kit = 'xxxxx';
// Adjust the width threshold
if( window.innerWidth < 800 ) {
document.write('\x3Cscript src="//use.typekit.net/'+ kit +'.js" onload="try{Typekit.load();}catch(e){}" async>\x3C/script>');
} else {
document.write('\x3Cscript src="//use.typekit.net/'+ kit +'.js">\x3C/script>');
document.write('\x3Cscript>try{Typekit.load();}catch(e){}\x3C/script>');
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment