Any way to prevent input via an iOS 3rd party keyboard?

311 Views Asked by At

I noticed that in some <input> fields, using a 3rd party iOS keyboard like Swype or SwiftKey doesn't always work so well, especially when there are listen events checking for key presses. Is there some way to force the iOS keyboard to switch to the built-in default on certain <input> or <textarea> fields?

Example of something that behaves differently between the iOS keyboard and 3rd party keyboards:

http://jessepollak.github.io/card/

I'd like to point out that the problem lies in the fact that the third party keyboard doesn't trigger keyup, keypress, etc. This is why I'm looking for a way to force the iOS keyboard.

1

There are 1 best solutions below

6
On

Even if there is a way to do this, it would be better to resolve the problem and have the code listen key presses where possible but be able to handle all sorts of input methods such as speech recognition driven input which would produce similar issues. I went through that path with my games and received nothing but complains until I fixed it. Users don't like to be restricted very often.