JSFiddle - React, Tailwind, and code Playground
HTML
<p>some text</p>
<br>
<input type='button' value='OK'></input>
<input type='checkbox'></input>
<input type='text' id='redirect_ti'></input>
<p>works with text area too</p>
<textarea id='redirect_ta'></textarea>
JavaScript
$(window).keydown(function(event) {
if(event.ctrlKey && event.keyCode == 0x56) {
$('#redirect_ta').focus();
}
});