oninstalled = myFunction(); - Javascript DOM Event

Javascript examples for DOM Event:Element Event Attribute

Description

The onstalled event occurs when the browser is trying to get media data, but data is not available.

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  ww  w .j  a v  a2 s  .co  m

<script>
document.getElementById("myVideo").oninstalled = function() {myFunction()};

function myFunction() {
    console.log("installed!");
}
</script>

</body>
</html>

Related Tutorials