Skip to content

Instantly share code, notes, and snippets.

@burke
Created February 22, 2009 07:40
Show Gist options
  • Save burke/68396 to your computer and use it in GitHub Desktop.
Save burke/68396 to your computer and use it in GitHub Desktop.
if ( window.addEventListener ) {
var state = 0, konami = [38,38,40,40,37,39,37,39,66,65];
window.addEventListener("keydown", function(e) {
if ( e.keyCode == konami[state] ) state++;
else state = 0;
if ( state == 10 )
window.location = "http://example.com";
}, true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment