How can I get the keyboard to be shown on mobile devices?
I already tried a few tricks that did not work, and I'm looking for a proper way to do it.
How can I get the keyboard to be shown on mobile devices?
I already tried a few tricks that did not work, and I'm looking for a proper way to do it.
If you came here because you have the same problem, you can do same as I did for jQuery terminal (it will be in version 0.9 until then it's in devel branch on github)
I've created textarea (I've reused my clipboard) and on mobile when click I give focus to that hidden element, textarea is always at the bottom. I've hide it by creating a mask with higher z-index then text area (opacity and clip don't work when there is focus on textarea). One note you can't do delay (setTimeout) when you focus, focus need to came directly from the real event.