Javascript examples for DOM Event:onloadeddata
The onloadeddata event occurs when data for the current frame is loaded, but not enough data to play next frame of the specified audio/video.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <audio> and <video> |
<!DOCTYPE html> <html> <body> <video controls onloadeddata="myFunction()"> <source src="your.mp4" type="video/mp4"> <source src="your.ogg" type="video/ogg"> Your browser does not support HTML5 video. </video>/*from ww w .j a v a 2 s . c o m*/ <script> function myFunction() { console.log("Browser has loaded the current frame"); } </script> </body> </html>