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

Javascript examples for DOM Event:onseeking

Description

The onseeking event occurs when the user starts moving/skipping to a new position in the 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 onseeking="myFunction()">
  <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  a  2  s .co m*/

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

</body>
</html>

Related Tutorials