Javascript examples for DOM Event:addEventListener
The onsuspend event occurs when the browser is intentionally not getting media data.
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 ww . j a va 2s.c o m*/ <script> document.getElementById("myVideo").addEventListener("onsuspend", myFunction); function myFunction() { console.log("onsuspend!"); } </script> </body> </html>