xxxxxxxxxx
16
document.getElementById('catButton').addEventListener('click', function() {
const imageContainer = document.getElementById('imageContainer');
// Remove any existing images
imageContainer.innerHTML = '';
// Create a new image element
const catImage = new Image();
catImage.src = 'https://media.istockphoto.com/id/1361335356/de/foto/tabby-wei%C3%9Fe-katze-miaut-im-freien-portr%C3%A4t-im-herbst.jpg?s=612x612&w=0&k=20&c=eRQU78UQQ1X7gqqiHc2UTHQIDDHyW9_4K1Iptn6tT3A='; // You can replaceURL with any cat image URL
catImage.alt = 'A cute cat';
catImage.style.width = '400px';
catImage.style.height = '400px';
// Append the image to the container
imageContainer.appendChild(catImage);
});