Possible Duplicate:
JavaScript event.keyCode constants
This is my code:
$button.on('keyup', function (event) {
// Detect an Enter keypress
if(event.keyCode === 13) {
doStuff();
}
});
As you can see, the keycode 13 is hardcoded. Is there a (cross-browser) way to fish out that number in a more semantically meaningful way?
var keys = { enter: 13 }and fish it throughevent.code === keys.enter, but I personally prefer to see the actual keycodes to be sure of what the script is doing without looking up an object's definition. And no, there are no cross-browser/platform issues with the Enter key as far as I'm aware. – Fabrício Matté Jan 11 at 11:16"\r".charCodeAt(0)or stackoverflow.com/questions/1465374/… – Alex K. Jan 11 at 11:17=]– Fabrício Matté Jan 11 at 11:19=]– Fabrício Matté Jan 11 at 11:23