Skip to content

Instantly share code, notes, and snippets.

@khoipro
Created December 17, 2017 03:25
Show Gist options
  • Select an option

  • Save khoipro/63c9b00208948cc9a092d1dd78f72560 to your computer and use it in GitHub Desktop.

Select an option

Save khoipro/63c9b00208948cc9a092d1dd78f72560 to your computer and use it in GitHub Desktop.
Typekit web font events
<script src="https://use.typekit.net/xxxxxxx.js"></script>
<script>
try {
Typekit.load({
loading: function() {
// JavaScript to execute when fonts start loading
},
active: function() {
// JavaScript to execute when fonts become active
},
inactive: function() {
// JavaScript to execute when fonts become inactive
}
})
} catch(e) {}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment