Created
June 8, 2016 04:04
-
-
Save iamakimmer/07fa554762ff3faa215b49dc218badf9 to your computer and use it in GitHub Desktop.
Onkeyup & keypress
This file contains 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
document.onkeyup = function(event) { | |
var keypress = String.fromCharCode(event.keyCode).toLowerCase(); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment