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