searchbutton

searchbutton

The event fires when the user presses the search button on Android. If you need to override the default search button behavior on Android you can register an event listener for the 'searchbutton' event.

Quick Example

document.addEventListener("searchbutton", onSearchKeyDown, false);

function onSearchKeyDown() {
    // Handle the search button
}
doc_cordova
2017-01-31 03:40:37
Comments
Leave a Comment

Please login to continue.