// NOTE: this is a sample, not a production code // Before photo.addEventListener('click', async () => { const images = await fetch(...); modal.innerHTML = ''; modal.classList.add('show'); });
// NOTE: this is a sample, not a production code // After photo.addEventListener('click', async () => { // Display modal ASAP modal.classList.add('show'); const images = await fetch(...); modal.innerHTML = ''; });