Javascript DOM onplaying Event via HTML Tag onplaying attribute

Introduction

This example demonstrates how to assign an "onplaying" event to a video element.

View in separate window

<!DOCTYPE html>
<html>
<body>
<p>Play, pause and then play the video again.</p>

<video controls onplaying="myFunction()">
  <source src="video.mp4" type="video/mp4">
  <source src="video.ogg" type="video/ogg">
  Your browser does not support HTML5 video.
</video>//from w  w  w .  j a  v a 2s . co m

<p id="demo"></p>
<script>
function myFunction() {
  document.getElementById("demo").innerHTML = "The video is now playing";
}
</script>

</body>
</html>
Bubbles: No
Cancelable: No
Event type: Event
Supported HTML tags: <audio> and <video>



PreviousNext

Related