<video onplaying="myFunction()"> - Javascript DOM Event

Javascript examples for DOM Event:onplaying

Description

The onplaying event occurs when the audio/video is playing after having been paused or stopped for buffering.

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 onplaying="myFunction()">
  <source src="your.mp4" type="video/mp4">
  <source src="your.ogg" type="video/ogg">
  Your browser does not support HTML5 video.
</video>/*  w  w  w .  ja  v a 2s  .  co m*/

<script>
function myFunction() {
    console.log("The video is now playing");
}
</script>

</body>
</html>

Related Tutorials