Javascript examples for DOM Event:Element Event Attribute
The onplaying event occurs when the audio/video is playing after having been paused or stopped for 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>//from ww w.j a va 2 s . c o m <script> document.getElementById("myVideo").onplaying = function() {myFunction()}; function myFunction() { console.log("The video is now playing"); } </script> </body> </html>