Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Capturing the tab key using JavaScript in Firefox

I use the following to restricts user to enter only some characters. When I press tab, the cursor does not point to next control (in Mozilla). But it works fine in IE.

// Restricts user to enter characters other than a to z, A to Z and white space( )
// Rauf K. 06.11.2010
$("input:text.characters_only").keypress(function(e) {
if (!((e.which >= 65 && e.which <= 90) || (e.which >= 97 && e.which <= 122) || e.which == 32 || e.which == 8 || e.which == 9)) {
        return false;
    }
});
like image 603
Rauf Avatar asked Jan 25 '11 12:01

Rauf


2 Answers

I would recommend trying e.keyCode instead of e.which. Here is a SO link that describes a good method of getting the key strike into a single variable regardless: jQuery Event Keypress: Which key was pressed?

like image 95
Joel Etherton Avatar answered Sep 23 '22 08:09

Joel Etherton


Perhaps if you start with something like:

if (e.keyCode === 9) { // TAB
    return true;
}
like image 25
antonj Avatar answered Sep 20 '22 08:09

antonj