Skip to content

Instantly share code, notes, and snippets.

@DJTB
Forked from TastyToast/konamicode.js
Created February 11, 2016 11:32
Show Gist options
  • Save DJTB/8de4a3304c2b5d2383ef to your computer and use it in GitHub Desktop.
Save DJTB/8de4a3304c2b5d2383ef to your computer and use it in GitHub Desktop.
Konami Code!
var kkeys = [], konami = "38,38,40,40,37,39,37,39,66,65";
$(document).keydown(function(e) {
kkeys.push( e.keyCode );
if ( kkeys.toString().indexOf( konami ) >= 0 ) {
$(document).unbind('keydown',arguments.callee);
// do something awesome
$("body").addClass("konami");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment