vestman / Select-or-Die

Yet another jQuery plugin to style select elements. Demo at http://vst.mn/selectordie/
MIT License
524 stars 133 forks source link

Keyboard filtering the list doesn't work with number pad #25

Open willberger opened 9 years ago

willberger commented 9 years ago

For example if you press "1" on the num pad String.fromCharCode(e.which) will return "a"

willberger commented 9 years ago

Possible fix (works but probably needs more testing):

var parsedChar = String.fromCharCode(e.which); if (e.which > 95 && e.which < 106) { parsedChar = (e.which - 96).toString(); } // Append the data-filter with typed character $sod.data("filter", $sod.data("filter") + parsedChar);