document.addEventListener("DOMContentLoaded", function () { function attachHandlers(wordEl) { ["mouseenter", "focus"].forEach(evt => { wordEl.addEventListener(evt, () => { }); }); wordEl.addEventListener( "touchstart", () => { }, { passive: true } ); } document.querySelectorAll(".tooltip-word").forEach(attachHandlers); });