Javascript examples for DOM Event:onloadstart
The onloadstart event occurs when the browser starts loading for the specified audio/video.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <audio> and <video> |
<!DOCTYPE html> <html> <body> <video controls onloadstart="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 . jav a 2 s . c om <script> function myFunction() { console.log("Starting to load video"); } </script> </body> </html>