Hi,
I know the title is not so good, it's hard to explain the simply thing I'd like to do.
In fact, I'm looking for a reverse e.preventDefault() method, something like that :
- $(document).keydown(function (e){
- if ( e.keyCode == 9)
- {
- e.reversePreventDefault();
- //do something...
- }
- }
I'd like to catch the focused link/input/whatever when I'm using tabulation.
Thanks :)