Javascript examples for DOM Event:Element Event Attribute
The onvolumechange event occurs each time the volume of a video/audio has been changed.
This event is invoked by:
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <audio> and <video> |
<!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 ww . j av a 2s.co m <script> document.getElementById("myVideo").onvolumechange = function() {myFunction()}; function myFunction() { console.log("The volume has been changed!"); } </script> </body> </html>