Javascript examples for DOM Event:addEventListener
The onprogress event occurs when the browser is downloading the specified audio/video.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <audio>, <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>/* ww w . j a v a2 s. c om*/ <script> document.getElementById("myVideo").addEventListener("progress", myFunction); function myFunction() { console.log("Downloading video"); } </script> </body> </html>