Vitajte na [www.pocitac.win] Pripojiť k domovskej stránke Obľúbené stránky
// Do textovej oblasti pridajte poslucháč udalosti keydown
document.querySelector('textarea').addEventListener('keydown', function(e) {
// Ak používateľ stlačil kláves enter
if (e.keyCode ===13) {
// Presuňte kurzor na prvú bunku nasledujúceho riadku
var nextCell =this.nextElementSibling.childNodes[0];
if (nextCell) {
nextCell.focus();
}
}
});
```