Skip to content

Instantly share code, notes, and snippets.

@rcarver
Created September 23, 2009 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save rcarver/192350 to your computer and use it in GitHub Desktop.
Save rcarver/192350 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
// *** EXPERIMENTAL ***
//
// This is an experimental method to be notified when Typekit's fonts have loaded.
//
// It will almost certainly change! Please do not use this on a live site. Please
// do let us know what you think by forking this gist, contacting us at
// support@typekit.com or on Get Satisfaction - http://getsatisfaction.com/typekit
//
Typekit.load("your-kit-id", {
beforeLoad: function(data) {
// fonts are not loaded!
},
afterLoad: function(data) {
// fonts are loaded!
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment