JSFiddle - React, Tailwind, and code Playground

by brigand

HTML

<div id="foo">
  <ol tabIndex="-1">
    <li>j</li>
    <li>j2</li>
  </ol>
</div>

JavaScript

const f = document.getElementById('foo');
console.log(f);

function thingy(e) {
  console.log(e);
}
f.addEventListener('keyup', thingy);