Skip to content

Instantly share code, notes, and snippets.

@jrivero
Created April 2, 2013 10:42
Show Gist options
  • Save jrivero/5291369 to your computer and use it in GitHub Desktop.
Save jrivero/5291369 to your computer and use it in GitHub Desktop.
Konami code with jquery
$(document).ready(function(){
var keys = [];
var konami = '38,38,40,40,37,39,37,39,66,65';
$(document)
.keydown(
function(e) {
keys.push( e.keyCode );
if ( keys.toString().indexOf( konami ) >= 0 ){
console.log("konami code")
keys = [];
}
}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment