Files
hocusfokus-web/assets/js/index.js
KirbyCMS Deploy 0a8c107828 Initial commit
2026-04-15 11:50:31 +00:00

8 lines
216 B
JavaScript

// Lightbox
Array.from(document.querySelectorAll("[data-lightbox]")).forEach(element => {
element.onclick = (e) => {
e.preventDefault();
basicLightbox.create(`<img src="${element.href}">`).show();
};
});