JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td>Bezeichnung</td>
        <td><input type="checkbox" class="check" id="check1"><textarea class="gray"></textarea></td>
    </tr>
    <tr>
        <td>Bezeichnung</td>
        <td><input type="checkbox" class="check"><textarea class="gray"></textarea></td>
    </tr>
    <tr>
        <td>Bezeichnung</td>
        <td><input type="checkbox" class="check"><textarea class="gray"></textarea></td>
    </tr>
</table>

CSS

.gray {background-color: #c0c0c0; }
.highlight {background: darkgray;}

JavaScript

$("#check1").focus();

$(':checkbox').on('focusin', function() { $(this).parent("td").parent("tr").addClass("highlight"); });
$(':checkbox').on('keydown', function() { 
	if (event.keyCode == 40) {
		$(this).parent("td").parent("tr").siblings("tr").find(".check")[0].focus();
	}
	else if (event.keyCode == 32) {

	}
	else {
		$(this).siblings("textarea").removeClass("gray").focus(); 
	}
});