<video onwaiting="myFunction()"> - Javascript DOM Event

Javascript examples for DOM Event:onwaiting

Description

The onwaiting event occurs when the video stops because it needs to buffer the next frame.

Summary

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

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<video controls onwaiting="myFunction()">
  <source src="your.mp4" type="video/mp4">
  <source src="your.ogg" type="video/ogg">
  Your browser does not support HTML5 video.
</video>//www  .  ja  v  a 2 s . co m

<script>
function myFunction() {
    console.log("Wait! I need to buffer the next frame");
}
</script>

</body>
</html>

Related Tutorials