Character not returning on keydown event
To develop a feature in JavaScript, I started by looking into the events related to the keyboard. I found three events : keypress, keydown, keyup. keypress was only happening when the user pressed a char key, and I also needed to get the event when the user uses the supr button. So I thought I …