Answers for "keypress event not working for backspace"

3

javascript keypress backspace not working

Try "onkeydown" instead of "onkeypress".

KeyPress event is invoked only for character (printable) keys, 
KeyDown event is raised for all including nonprintable such as Control, 
Shift, Alt, BackSpace, etc.
Posted by: Guest on October-26-2020

Code answers related to "keypress event not working for backspace"

Code answers related to "Javascript"

Browse Popular Code Answers by Language