Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title>Monkey Videos</title>
</head>
<body>
<h1>Monkey Videos</h1>
<p>Enter a number to watch that many monkey videos:</p>
<form>
<input type="number" id="numVideos" name="numVideos">
<input type="submit" value="Watch Videos" onclick="showVideos()">
</form>
<div id="videoContainer"></div>
<script>
function showVideos() {
event.preventDefault(); // Prevents the form from submitting and
refreshing the page
var numVideos = document.getElementById("numVideos").value;
var videoContainer = document.getElementById("videoContainer");
videoContainer.innerHTML = ""; // Clear previous videos, if any
for (var i = 0; i < numVideos; i++) {
var video = document.createElement("video");
video.src =
"https://www.w3schools.com/html/mov_bbb.mp4"; // Replace with actual monkey video
URL
video.autoplay = true;
video.controls = true;
videoContainer.appendChild(video);
}
}
</script>
</body>
</html>

You might also like