Skip to content

Instantly share code, notes, and snippets.

@burke
Created February 22, 2009 07:37
Show Gist options
  • Save burke/68393 to your computer and use it in GitHub Desktop.
Save burke/68393 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.push( e.keyCode );
if ( kkeys.toString().indexOf( konami ) >= 0 )
window.location = "http://example.com/";
}, true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment