grifdail

Untitled

Jan 20th, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function playKonami() {
  2.     alert("hello");
  3. }
  4.  
  5. var input = [], konami = "38,38,40,40,37,39,37,39,66,65"
  6. $(window).on("keydown",function(e) {
  7.     console.log(e.which);
  8.     input.push(e.which)
  9.     if (input.toString().indexOf(konami) >= 0) { playKonami() }
  10. })
Advertisement
Add Comment
Please, Sign In to add comment