Using preventDefault() on a keydown works for all keys except the tab key on certain sites like Gmail.
Why is this the case? What is special about the tab key -- shouldn't it be treated the same as any other
keypress?How can I block the tab key from cycling through elements in Gmail?
Here is the Greasemonkey (JS with jQuery) code I'm currently using:
$("body.editable.LW-avf").keydown(function(event){
if(event.which == 9){
event.preventDefault();
}
});
Anything other than tab (eg a) works - the keypress is stopped. How can I capture the tab key?
<body>. Have you considered switching email clients? (^_^) Scripting for Google sites is a chore. Good luck! – Brock Adams Oct 1 '12 at 13:42