document.querySelectorAll('.clickable-image').forEach(function(image) { image.onclick=function() {const modal =document.getElementById('imageModal');const modalImage =document.getElementById('modalImage');const modalCaption =document.getElementById('modalCaption');const initialCaption =document.querySelector('.initially-hidden'); initialCaption.style.display='none';// Hide the caption on the main page modal.style.display='block'; modalImage.src=this.getAttribute('data-src');// Set the source of the enlarged image modalCaption.textContent=this.parentElement.querySelector('figcaption').textContent;// Set the caption text };});