volumeupbutton
The event fires when the user presses the volume up button. If you need to override the default volume up behavior you can register an event listener for the volumeupbutton
event.
Quick Example
document.addEventListener("volumeupbutton", onVolumeUpKeyDown, false); function onVolumeUpKeyDown() { // Handle the volume up button }
Please login to continue.