Javascript DOM ondurationchange Event via addEventListener() method

Introduction

In JavaScript, using the addEventListener() method:

object.addEventListener("durationchange",
       myScript);

This example uses the addEventListener() method to attach a "durationchange" event to a video element.

View in separate window

<!DOCTYPE html>
<html>
<body>
<video controls id="myVideo">
  <source src="video.mp4" type="video/mp4">
  <source src="video.ogg" type="video/ogg">
  Your browser does not support HTML5 video.
</video>/*from  ww  w  .j  a v  a 2s  .c  om*/

<p id="demo"></p>
<script>
document.getElementById("myVideo").addEventListener("durationchange", myFunction);

function myFunction() {
  document.getElementById("demo").innerHTML = "The video duration has changed";
}
</script>

</body>
</html>
Bubbles: No
Cancelable: No
Event type: Event
Supported HTML tags: <audio> and <video>



PreviousNext

Related