Horje

How to Run "myFunction" when the user starts changing the position of the audio - HTML onseeking Attribute

Audio Example. This example demonstrates how to use the "onseeking" attribute on an AUDIO element.
index.html
Example: HTML
<!DOCTYPE html> 
<html> 
<body> 

<p id="demo">Move to a new position in the audio:</p>

<audio id="myAudio" controls onseeking="myFunction()">
  <source src="https://file-examples.com/wp-content/storage/2017/11/file_example_MP3_1MG.mp3" type="audio/ogg">
  <source src="https://file-examples.com/wp-content/storage/2017/11/file_example_MP3_1MG.mp3" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>

<script>
function myFunction() {
  document.getElementById("demo").innerHTML = "You moved to position " + document.getElementById("myAudio").currentTime;
}
</script> 

<p>This example demonstrates how to use the "onseeking" attribute on an AUDIO element.</p>

</body> 
</html>

Output should be:

How to Run "myFunction" when the user starts changing the position of the audio - HTML onseeking Attribute




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Attribute
Uploaded by:
Admin