Skip to content

Instantly share code, notes, and snippets.

@alandotcom
Forked from adamcbrewer/jq.konami.js
Created November 6, 2012 02:05
Show Gist options
  • Select an option

  • Save alandotcom/4022075 to your computer and use it in GitHub Desktop.

Select an option

Save alandotcom/4022075 to your computer and use it in GitHub Desktop.
JS: Konami Code
// Konami code with jQuery.
// Source: http://paulirish.com/2009/cornify-easter-egg-with-jquery/
var kkeys = [],
konami = "38,38,40,40,37,39,37,39,66,65";
$(document).keydown(function(evt) {
kkeys.push( evt.keyCode );
if ( kkeys.toString().indexOf( konami ) >= 0 ){
$(document).unbind('keydown',arguments.callee);
// your easter egg here
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment