Number pad (10 key) character codes incorrect in ie

863 Views Asked by At

I notice that when I listen for a keypress the character codes show up differently in Chrome and IE. Does anyone know why this is happing?

Chrome:

numpad key: 0, String.fromCharCode(48) => "0"
numpad key: 1, String.fromCharCode(49) => "1"
numpad key: 2, String.fromCharCode(50) => "2"
numpad key: 3, String.fromCharCode(51) => "3"
numpad key: 4, String.fromCharCode(52) => "4"
numpad key: 5, String.fromCharCode(53) => "5"
numpad key: 6, String.fromCharCode(54) => "6"
numpad key: 7, String.fromCharCode(55) => "7"
numpad key: 8, String.fromCharCode(56) => "8"
numpad key: 9, String.fromCharCode(57) => "9"

IE:

numpad key: 0, String.fromCharCode(96)  => "`"
numpad key: 1, String.fromCharCode(97)  => "a"
numpad key: 2, String.fromCharCode(98)  => "b"
numpad key: 3, String.fromCharCode(99)  => "c"
numpad key: 4, String.fromCharCode(100) => "d"
numpad key: 5, String.fromCharCode(101) => "e"
numpad key: 6, String.fromCharCode(102) => "f"
numpad key: 7, String.fromCharCode(103) => "g"
numpad key: 8, String.fromCharCode(104) => "h"
numpad key: 9, String.fromCharCode(105) => "i"

I'm using jquery which should normalize event.keyCode and event.charCode:

$("#input").keypress(function(e){
    console.log e.which, String.fromCharCode(e.which)
})

This is different than this answer since it uses vanilla javascript e.keyCode instead of jquery e.which

I wonder if this has something to do with using a Windows Virtual Machine (Parallels Desktop).

0

There are 0 best solutions below