Skip to content

Instantly share code, notes, and snippets.

@capndesign
Created November 16, 2010 22:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save capndesign/702689 to your computer and use it in GitHub Desktop.
Save capndesign/702689 to your computer and use it in GitHub Desktop.
My staging version of the Typekit Colophon bookmarklet
javascript:(function(){s=document.createElement('script');s.type='text/javascript';s.src='https://gist.github.com/raw/702689/typekit-colophon.js';document.getElementsByTagName('head').item(0).appendChild(s);void('')})();
(function() {
var a = document.getElementsByTagName('script'),
i, l, result,
rurl = /^http(s?):\/\/use\.typekit\.com\/([0-9A-Za-z]+)\.js/;
for (i = 0, l = a.length - 1; i < l; i++) {
if (result = rurl.exec(a[i].getAttribute('src'))) {
window.location.assign('http://typekit.com/colophons/' + result[1]);
break;
}
}
if (!result) {
alert('This site doesn\'t use Typekit!');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment