This example demonstrates how to assign an "onloadstart" event to a video element.
<!DOCTYPE html> <html> <body> <video controls onloadstart="myFunction()"> <source src="video.mp4" type="video/mp4"> <source src="video.ogg" type="video/ogg"> Your browser does not support HTML5 video. </video>// ww w .j a va 2s. com <p id="demo"></p> <script> function myFunction() { document.getElementById("demo").innerHTML = "Starting to load video"; } </script> </body> </html>
Bubbles: | No |
---|---|
Cancelable: | No |
Event type: | ProgressEvent |
Supported HTML tags: | <audio> and <video> |