Ask Your Question
0

How can Javascript be used to change the source of the video player when an image is clicked?

asked 2023-07-18 04:18:08 +0000

nofretete gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-07-18 04:22:02 +0000

lalupa gravatar image

To change the source of the video player when an image is clicked in JavaScript, you can use the following code:

HTML:

<img src="image.jpg" id="image" onclick="change()">
<video id="video" src="video.mp4"></video>

JavaScript:

function change() {
  var image = document.getElementById("image");
  var video = document.getElementById("video");
  video.src = "new_video.mp4";
  video.load();
  video.play();
}

In this code, an image (with the ID "image") is clicked, which triggers the "change" function. Inside the "change" function, we get the video element (with the ID "video") and set its source attribute to a new video file (in this case, "new_video.mp4"). We then load and play the new video.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-18 04:18:08 +0000

Seen: 14 times

Last updated: Jul 18 '23