I am developing an HTML code editor using simple DIV\'s and capturing events. When I use this on the iPad the keyboard never pops up since i\'m not technically in an editab
I figured out another dirty workaround, but works well. The trick is based on the fact, that if the keyboard is already open, changing the focus will not close the keyboard.
.focus() on this invisible field. The keyboard will open....focus() on the desired input. You can use small setTimeout delay, for example 500ms if needed