> Mike, in which events are you trying to intercept these keys? I found a
> few inconsistencies regarding this.

Hi Klaus,

Just for testing I setup a handler to reject all keypress/keydown
events like this:

var f = function() { return false; };
$().bind('keypress', f).bind('keydown', f);

In Opera, it sort of works.  I can't type into input fields but I can
still TAB around and I can use arrow keys on select controls.  I can
even delete text from an input control.  I tried stopPropagation on
the event too w/o success.  In IE and FF the key events are snuffed as
expected.

Mike

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to