addEventListener("durationchange", myFunction); - Javascript DOM Event

Javascript examples for DOM Event:addEventListener

Description

The ondurationchange event occurs when the duration of the audio/video is changed.

Summary

Bubbles No
Cancelable No
Supported HTML tags: <audio> and <video>

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<video controls id="myVideo">
  <source src="your.mp4" type="video/mp4">
  <source src="your.ogg" type="video/ogg">
  Your browser does not support HTML5 video.
</video>//w ww . ja  v a 2  s  .c  om

<script>
document.getElementById("myVideo").addEventListener("durationchange", myFunction);

function myFunction() {
    console.log("The video duration has changed");
}
</script>

</body>
</html>

Related Tutorials