Occurs when the volume is changed, or playback is muted or unmuted.
| .png) .png) | 
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
- HTML5 A vocabulary and associated APIs for HTML and XHTML, Section 4.8.9.12
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