Javascript examples for DOM Event:onseeking
Execute a JavaScript when moving/skipping to a new position in the video:
<!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 w w w .jav a2s. c o m <script> function myFunction() { console.log("Seek operation began!"); } </script> </body> </html>