addEventListener("loadstart", myFunction); - Javascript DOM Event

Javascript examples for DOM Event:addEventListener

Description

The onloadstart event occurs when the browser starts loading for the specified audio/video.

Summary

Bubbles No
Cancelable No
Supported HTML tags: <audio> and <video>

Demo Code

ResultView the demo in separate window

<!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>//from w  ww. j  a  v a  2  s.co m

<script>
document.getElementById("myVideo").addEventListener("loadstart", myFunction);

function myFunction() {
    console.log("Starting to load video");
}
</script>

</body>
</html>

Related Tutorials