[jQuery] New plug-in: shortKeys

2006-11-27 Thread Rik Lomas
Hi guys, I tried emailing this before, but it seems to be lost in the interweb. Thought I'd let you know that I've released a new plug-in called shortKeys, an easy way to implement web application keyboard shortcuts, as seen in applications such as Gmail and Google Reader. Any bugs, comments and

[jQuery] New plug-in: shortKeys

2006-11-27 Thread Rik Lomas
Hi guys, Just thought I'd let you know that I've released a new plug-in called shortKeys, an easy way to implement web application keyboard shortcuts, as seen in applications such as Gmail and Google Reader. Any bugs, comments and general feedback would be greatly received.

Re: [jQuery] New plug-in: shortKeys

2006-11-27 Thread jyl
I tried it on IE6 and it did nothing for me. Maybe I'm doing it wrong? I typed 'N' in the expectation of seeing the #shortcut div updated, didn't happen. --Jacob Hi guys, I tried emailing this before, but it seems to be lost in the interweb. Thought I'd let you know that I've released a new

Re: [jQuery] New plug-in: shortKeys

2006-11-27 Thread jyl
OK never mind, it did work. I followed the instructions to the letter (eh) and typed N not n. When I type n it does work. --Jacob Hi guys, I tried emailing this before, but it seems to be lost in the interweb. Thought I'd let you know that I've released a new plug-in called shortKeys, an

Re: [jQuery] New plug-in: shortKeys

2006-11-27 Thread Sam Collett
On 27/11/06, Rik Lomas [EMAIL PROTECTED] wrote: Hi guys, I tried emailing this before, but it seems to be lost in the interweb. Thought I'd let you know that I've released a new plug-in called shortKeys, an easy way to implement web application keyboard shortcuts, as seen in applications

Re: [jQuery] New plug-in: shortKeys

2006-11-27 Thread Dave Methvin
http://rikrikrik.com/jquery/shortkeys/ Without knowledge of the keyboard shortcuts on all the browsers this works on, you can't really have consistent shortcuts across browsers (I think even major sites have conflicts with browsers). It's just a fact of life if you're a keyboard user. All

Re: [jQuery] New plug-in: shortKeys

2006-11-27 Thread Marshall Salinger
] New plug-in: shortKeys Hi guys, I tried emailing this before, but it seems to be lost in the interweb. Thought I'd let you know that I've released a new plug-in called shortKeys, an easy way to implement web application keyboard shortcuts, as seen in applications such as Gmail and Google Reader

Re: [jQuery] New plug-in: shortKeys

2006-11-27 Thread Sam Collett
On 27/11/06, Marshall Salinger [EMAIL PROTECTED] wrote: Excellent plug-in! Does anyone know the key-codes to use the left and right arrows on the keyboard? Thanks, Marshall Left = 37 Right = 39 Others you may find useful: Backspace = 8 Tab = 9 Enter = 13 End = 35 Home = 36

Re: [jQuery] New plug-in: shortKeys

2006-11-27 Thread ashutosh bijoor
Masterpiece! Thanks a ton! This is another great milestone in jquery. Regards Ashutosh On 11/27/06, Sam Collett [EMAIL PROTECTED] wrote: On 27/11/06, Marshall Salinger [EMAIL PROTECTED] wrote: Excellent plug-in! Does anyone know the key-codes to use the left and right arrows on the keyboard?

Re: [jQuery] New plug-in: shortKeys

2006-11-27 Thread Erik Beeson
Since we're on the subject, I find this page pretty helpful for figuring out keycodes: http://www.ryancooper.com/resources/keycode.asp --Erik On 11/27/06, Sam Collett [EMAIL PROTECTED] wrote: On 27/11/06, Marshall Salinger [EMAIL PROTECTED] wrote: Excellent plug-in! Does anyone know the

Re: [jQuery] New plug-in: shortKeys

2006-11-27 Thread Sam Collett
On 27/11/06, Erik Beeson [EMAIL PROTECTED] wrote: Since we're on the subject, I find this page pretty helpful for figuring out keycodes: http://www.ryancooper.com/resources/keycode.asp --Erik This demo which I did a while ago shows how the keyCode/charCode varies onkeypress/down/up