volumeupbutton

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
}
doc_cordova
2017-01-31 03:40:44
Comments
Leave a Comment

Please login to continue.