I am trying to implement a keyboard accessibility script together with an assistive technology (NVDA).
My script captures arrow key press. code snippet:
$(document).keydown(function(event){
var key = event.keyCode || event.which;
if(key == 40) //capture arrow key down
{
//do something evil
}
}
The problem is, the assistive technology has its own keyboard bindings.
Is it possible to make them simultaneously work?