Files
mantelzorgwoning.info/assets/js/tooltips.js
2025-12-05 09:15:15 +01:00

15 lines
382 B
JavaScript

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);
});