1 2 3 4 5 6 7 8
window.addEventListener("startViewy", ({detail}) => { detail.root.querySelectorAll(`.dynamic-content`) .forEach(dynamicContent => { dynamicContent.addEventListener("dynamicContentLoaded", () => { console.log("dynamicContentLoaded"); }); }); });