I have a javascript based multi-device-hybrid-app that targets both IOS and Andriod and cannot find any information on how to hide the keyboard when a submit button is clicked.
How would I do this ?
I have a javascript based multi-device-hybrid-app that targets both IOS and Andriod and cannot find any information on how to hide the keyboard when a submit button is clicked.
How would I do this ?
You can use Ionic Cordova plugin to hide keyboard, you can download the plugin from here
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
Refer SO post 'Installing Plugins to Visual Studio Cordova project' to add custom plugin from Git in Visual Studio