Javascript examples for DOM Event:addEventListener
The onpause event occurs when the audio/video is paused either by the user or programmatically.
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>// www . j a v a2 s.com <script> document.getElementById("myVideo").addEventListener("pause", myFunction); function myFunction() { console.log("The video was paused"); } </script> </body> </html>