Created
November 11, 2019 21:19
-
-
Save unique1984/e7f6823e68f0cd40df563dc23bed8ea0 to your computer and use it in GitHub Desktop.
Javascript Key Codes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html lang="tr"> | |
| <head> | |
| </head> | |
| <body> | |
| <script type="text/javascript"> | |
| document.addEventListener("keypress", function(e){ | |
| console.log(e.key + " - " + e.keyCode + " - " + e.code); | |
| }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment