Javascript examples for DOM Event:addEventListener
The onwaiting event occurs when the video stops because it needs to buffer the next frame.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <audio>, <video> |
<!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>/* www. jav a2s . c o m*/ <script> document.getElementById("myVideo").addEventListener("waiting", myFunction); function myFunction() { console.log("Wait! I need to buffer the next frame"); } </script> </body> </html>