Skip to content

Instantly share code, notes, and snippets.

@angeenes
Created August 27, 2016 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angeenes/d86002444e8f924c0925d04e9862abbf to your computer and use it in GitHub Desktop.
Save angeenes/d86002444e8f924c0925d04e9862abbf to your computer and use it in GitHub Desktop.
document.addEventListener('keydown', function(e){
console.log("input keydown");
console.log("which: " + e.which);
console.log("keyCode: " + e.keyCode);
console.log("charCode: " + e.charCode);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment