<!DOCTYPE html>
<html>
<body>
<p>This example shows the difference between the onseeking event and onseeked event.</p>
<p>The onseeking event occurs everytime the user STARTS moving/skipping to a new position in the audio/video.</p>
<p>The onseeked event occurs when the user is FINISHED moving/skipping to a new position in the audio/video</p>
<p>Move to a new position in the video. <strong>Tip:</strong> Try to hold down the mouse button and seek back and forth in the video playback.</p>
<video controls onseeking="myFunction()" onseeked="mySecondFunction()">
<source src="mov_bbb.mp4" type="video/mp4">
<source src="mov_bbb.ogg" type="video/ogg">
Your browser does not support HTML5 video.
</video>
<p>seeking occured: <span id="demo"></span> times.</p>
<p>seeked occured: <span id="demo2"></span> times.</p>
<script>
x = 0;
function myFunction() {
document.getElementById("demo").innerHTML = x += 1;
}
y = 0;
function mySecondFunction() {
document.getElementById("demo2").innerHTML = y += 1;
}
</script>
</body>
</html>