Tutorial keyCodes
As in, what keyboard events report based on what keys are pressed. $("#textinput").keydown(function(e) { e.keyCode; // this va...
https://iskablogs.blogspot.com/2014/03/tutorial-keycodes.html
As in, what keyboard events report based on what keys are pressed.
$("#textinput").keydown(function(e) {
e.keyCode; // this value
});
Key
Code
backspace
8
$("#textinput").keydown(function(e) {
e.keyCode; // this value
});
Key
Code
backspace
8