This is caused by assigning jQuery to use a key down/up event. it's a meaningless warning and you can safely ignore it. You can turn off javascript warnings in firebug if you wish.
Raveren
2010-10-02 14:15:26
This is caused by assigning jQuery to use a key down/up event. it's a meaningless warning and you can safely ignore it. You can turn off javascript warnings in firebug if you wish.
In non-IE browsers (before version 9), the event associated with a keydown (or keyup) event has a keyCode property, the same property IE uses for all key events.
only the keypress can return an event with a charCode. And, amusingly, a keypress can also return a keyCode in non-IE browsers, corresponding to the unmodified printable key or a control key.