Skip to content

Instantly share code, notes, and snippets.

@unique1984
Created November 11, 2019 21:19
Show Gist options
  • Select an option

  • Save unique1984/e7f6823e68f0cd40df563dc23bed8ea0 to your computer and use it in GitHub Desktop.

Select an option

Save unique1984/e7f6823e68f0cd40df563dc23bed8ea0 to your computer and use it in GitHub Desktop.
Javascript Key Codes
<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