0

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 ?

Anthony Walters
  • 143
  • 1
  • 12

1 Answers1

0

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

Community
  • 1
  • 1
Abhishek - MSFT
  • 1,598
  • 11
  • 17