Javascript examples for DOM Event:addEventListener
The oncanplaythrough event occurs when the browser estimates it can play through the specified media without buffering.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <audio> and <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>/* w w w .j a v a 2 s .c o m*/ <script> document.getElementById("myVideo").addEventListener("canplaythrough", myFunction); function myFunction() { console.log("Can start playing video"); } </script> </body> </html>