Javascript DOM oncanplay Event via HTML Tag oncanplay function

Introduction

In JavaScript:

object.oncanplay = function(){
       myScript};

This example uses the HTML DOM to assign an "oncanplay" event to a video element.

View in separate window

<!DOCTYPE html>
<html>
<body>
<video controls id="myVideo">
  <source src="video.mp4" type="video/mp4">
  <source src="video.ogg" type="video/ogg">
  Your browser does not support HTML5 video.
</video>// w  w w .j a va2  s  .c  o  m

<p id="demo"></p>
<script>
document.getElementById("myVideo").oncanplay = function() {myFunction()};

function myFunction() {
  document.getElementById("demo").innerHTML = "Can start playing video";
}
</script>

</body>
</html>
Bubbles: No
Cancelable: No
Event type: Event
Supported HTML tags: <audio> and <video>
DOM Version: Level 3 Events



PreviousNext

Related