29 November 06
Just a quick note to let you know that my new jQuery plug-in, shortKeys, has been released. It’s an easy and simple way to implement keyboard shortcuts into web applications. I was inspired by Google Reader to do this, as for power users of the application, shortcuts are such a time saver.
http://rikrikrik.com/jquery/shortkeys/
Any comments would be very handy for the development process!
Enjoy this? Subscribe to the feed for the very latest updates.
Comment by Stefano Mallozzi on 13 January 2007, 23:20
I’m working on a Drupal module to handle keystrokes, and I had to make a little patch to your jquery.shortkeys.js:
if(el.keyTest(i) && !el.onFormElement) {
obj[x](x);
I had to add the key x as a parameter in the function obj[x](). Can you apply this patch to your code? I think it won’t mess with the existing code.