Javascript Interstitial Input Layer

I am creating a web application that uses the keyboard quite widely. I notice that the built-in browser event handling is inconsistent in browsers, and jQuery is not very well normalized (for example, Firefox sends keypress for backspace, chrome doesn't). I am wondering if there is a javascript library that normalizes these features and provides a single interface for handling keyboard events.

+7
source share
1 answer

Here is a couple:

http://habrahabr.ru/blogs/jquery/76424/

http://www.openjs.com/scripts/events/keyboard_shortcuts/

http://wiki.fluidproject.org/display/fluid/Keyboard+Accessibility+Plugin+API

Please note that the first is in Russian, but Google Translate translates it well. translate.google.com

I have not tried any of them, but have not seen anyone else offering anything. Hope this gives you a starting point. Good luck

+1
source

All Articles