Javascript examples for DOM Event:oncanplay
The oncanplay event occurs when the browser can start playing the specified audio/video.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <audio> and <video> |
<!DOCTYPE html> <html> <body> <video controls oncanplay="myFunction()"> <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 av a2 s.c om*/ <script> function myFunction() { console.log("Can start playing video"); } </script> </body> </html>