keyboard send button
LningCode opened this issue · 1 comments
LningCode commented
ios how to set the system keyboard to send button
WouterWidgets commented
- 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;