``` js
// Lägg till en keydown-händelselyssnare till textområdet
document.querySelector('textarea').addEventListener('keydown', function(e) {
// Om användaren tryckte på enter-tangenten
if (e.keyCode ===13) {
// Flytta markören till den första cellen i nästa rad
var nextCell =this.nextElementSibling.childNodes[0];
if (nextCell) {
nextCell.focus();
}
}
});
```