Javascript examples for DOM Event:Element Event Attribute
The onplay event occurs when the audio/video has been started or is no longer paused.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <audio> and <video> |
<!DOCTYPE html> <html> <body> <p>Press play.</p> <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 .ja va 2 s. c om <script> document.getElementById("myVideo").onplay = function() {myFunction()}; function myFunction() { console.log("The video has started to play."); } </script> </body> </html>