Javascript DOM onloadedmetadata Event via HTML Tag onloadedmetadata attribute

Introduction

This example demonstrates how to assign an "onloadedmetadata" event to a video element.

View in separate window

<!DOCTYPE html>
<html>
<body>
<video controls onloadedmetadata="myFunction()">
  <source src="video.mp4" type="video/mp4">
  <source src="video.ogg" type="video/ogg">
  Your browser does not support HTML5 video.
</video>/*w w w. j  av a2  s  . c o  m*/

<p id="demo"></p>
<script>
function myFunction() {
  document.getElementById("demo").innerHTML = "Meta data for video loaded";
}
</script>

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



PreviousNext

Related