menubutton
The event fires when the user presses the menu button. Applying an event handler overrides the default menu button behavior.
Quick Example
document.addEventListener("menubutton", onMenuKeyDown, false);
function onMenuKeyDown() {
// Handle the back button
}
Please login to continue.