Connor McCutcheon
/ Music
make-scrollable-code-focusable.js
js
Array.from(document.getElementsByTagName('pre')).forEach((element) => {
  element.setAttribute('tabindex', '0');
});
No comments yet.