Untitled
unknown
plain_text
3 years ago
471 B
5
Indexable
<!DOCTYPE html>
<html>
<head>
<title>Button Click Example</title>
</head>
<body>
<button onclick="showDog()">Show Dog</button>
<br><br>
<img id="dog-image" style="display:none" src="https://images.dog.ceo/breeds/whippet/n02091134_5775.jpg" width="400" height="400">
<script>
function showDog() {
var dogImage = document.getElementById("dog-image");
dogImage.style.display = "block";
}
</script>
</body>
</html>
Editor is loading...