Skip to content

Instantly share code, notes, and snippets.

@nicksheffield
Created September 23, 2011 03:32
Show Gist options
  • Save nicksheffield/1236690 to your computer and use it in GitHub Desktop.
Save nicksheffield/1236690 to your computer and use it in GitHub Desktop.
Most evil javascript ever
(function(){
var elems = document.getElementsByTagName('*');
for(var i=-1;++i<elems.length;){
elems[i].style.fontFamily='"Comic Sans MS", "Comic Sans", cursive';
}
})();
// as a bookmarklet
javascript:(function(){var elems=document.getElementsByTagName('*');for(var i=-1;++i<elems.length;){elems[i].style.fontFamily='"Comic Sans MS", "Comic Sans", cursive';}})();
@Cvar1984
Copy link

lmao

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment