Javascript examples for DOM Event:onstalled
The onstalled event occurs when the browser is trying to get media data, but data is not available.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <audio> and <video> |
<!DOCTYPE html> <html> <body> <video controls onstalled="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 a 2 s. c o m*/ <script> function myFunction() { console.log("intalled!"); } </script> </body> </html>