Skip to content

Instantly share code, notes, and snippets.

@youpy
Created November 13, 2012 08:54
Show Gist options
  • Save youpy/4064721 to your computer and use it in GitHub Desktop.
Save youpy/4064721 to your computer and use it in GitHub Desktop.
dotjs script to display glitched webfont
// only supports Safari
// https://github.com/wfarr/dotjs.safariextension
if($.browser.safari) {
var link = $('<link />').
attr('href', 'http://dl.dropbox.com/u/334064/sketches/webfont_1/styles_min.css').
attr('type', 'text/css').
attr('rel', 'stylesheet');
$('head').append(link);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment