I want a user to be able to use a textarea and control the textarea with a keydown. There seems to be a conflict with a detedction of a keydown when the textarea is focused on/ being used. Is there a good solution?
Psuedo Code:
keydown(function(event) {
if (event.which == 11) {
$(TextArea).focusout();
SwitchTextAreaFunction();
$(TextArea).focus();
}
}