addEventListener("volumechange", myFunction); - Javascript DOM Event

Javascript examples for DOM Event:addEventListener

Description

The onvolumechange event occurs each time the volume of a video/audio has been changed.

This event is invoked by:

  • Increasing or decreasing the volume
  • Muting or unmuting the media player

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 id="myVideo">
  <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  .ja va  2s  .c o  m*/

<script>
document.getElementById("myVideo").addEventListener("volumechange", myFunction);

function myFunction() {
    console.log("The volume has been changed!");
}
</script>

</body>
</html>

Related Tutorials