onvolumechange event

Occurs when the volume is changed, or playback is muted or unmuted.

 

Syntax

Event Property object.onvolumechange = handler;
addEventListener Method object.addEventListener("volumechange", handler, useCapture)

 

Event information

Synchronous No
Bubbles No
Cancelable No

 

Event handler parameters

  • handler [in]
    Type: function

    Event handler object.

Standards information

Remarks

The volume property of the element represents the current volume level.

The default playback volume is 1 (100 percent). The playback volume cannot be increased beyond 100 percent.

To invoke this event, do one of the following:

  • Increase or decrease the volume.
  • Mute or unmute the playback.

See also

Reference

volume

muted

Events example