cordova-plugin-ionic-keyboard icon indicating copy to clipboard operation
cordova-plugin-ionic-keyboard copied to clipboard

keyboard send button

Open LningCode opened this issue 5 years ago • 1 comments

ios how to set the system keyboard to send button

LningCode avatar Apr 10 '20 03:04 LningCode

  • Wrap your input(s) inside a <form>
  • Make sure the form has an action attribute (can be empty)

To make it actually submit the form:

  • Add an <input type="submit"> to the form
  • Make the submit button invisible using any CSS other than display: none. E.g. visibility: hidden; position: fixed; pointer-events: none;

WouterWidgets avatar May 04 '20 21:05 WouterWidgets