cordova-plugin-ionic-keyboard
cordova-plugin-ionic-keyboard copied to clipboard
keyboard send button
ios how to set the system keyboard to send button
- Wrap your input(s) inside a
<form> - Make sure the form has an
actionattribute (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;