Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function playKonami() {
- alert("hello");
- }
- var input = [], konami = "38,38,40,40,37,39,37,39,66,65"
- $(window).on("keydown",function(e) {
- console.log(e.which);
- input.push(e.which)
- if (input.toString().indexOf(konami) >= 0) { playKonami() }
- })
Advertisement
Add Comment
Please, Sign In to add comment