I'm finding that the delete key doesn't fire the keypress
event in Chrome, while other keys work. The problem doesn't occur in Firefox, just in Chrome, why? Here is my code:
document.addEventListener('keypress', function (e) {
console.log(e);
}, false);