onloadeddata = myFunction(); - Javascript DOM Event

Javascript examples for DOM Event:Element Event Attribute

Description

The onloadeddata event occurs when data for the current frame is loaded, but not enough data to play next frame of the specified audio/video.

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>//from w w  w  .  j a va 2 s.  c om

<script>
document.getElementById("myVideo").onloadeddata = function() {myFunction()};

function myFunction() {
    console.log("Browser has loaded the current frame");
}
</script>

</body>
</html>

Related Tutorials