Skip to content

Instantly share code, notes, and snippets.

@hunter
Created October 1, 2009 14:22
Show Gist options
  • Save hunter/198986 to your computer and use it in GitHub Desktop.
Save hunter/198986 to your computer and use it in GitHub Desktop.
/* http://burkelibbey.posterous.com/the-konami-code */
(function(){
var s=0,w=window,k=[38,38,40,40,37,39,37,39,66,65];
$(w).keydown(function(e){
if((e.keyCode==k[s]?++s:s=0)>9)w.location="http://example.com/secret";
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment