Skip to content

Instantly share code, notes, and snippets.

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