How do I force the keyboard to stay open in Safari?
I know it will pop up when I click on Search or the address bar, but I need to have it displayed while I'm reading a web page.
Thanks.
Roxy
IMAC G5, Mac OS X (10.5.8)
IMAC G5, Mac OS X (10.5.8)
If anyone is still interested, here is the closest I could get to a solution.
If the iPhone or iPad wants a text field, give it one. Create it immediately before the area your keystrokes will populate, then do everything you can to hide it.
<input type="text" id="keyboardtrigger" style="position: relative; top: 100px; background-color: transparent; border: transparent; height:0px;" />
Now, every event where you want to make the keyboard visible, add the Javascript line
$("#keyboardtrigger").focus();
And the keyboard appears. Take the focus away from the text box and it dissapears.
Just a couple of notes:-
I'm also interested in an iPad-friendly "formula editor similar to MathType", and have found the keyboard behaviour most troublesome. If you are developing a solution that I might be able to license, please keep me informed.
-steve
Two reasons it would be handy to be able to force the keyboard to appear:
Typing in a date or time in the calendar instead of playing slot machine to get the right one.
Typing the name of a folder in Mail to file a message.
I'm sure there are others. My BlackBerry could do both of these things.
The accepted answer for this question is incorrect. I have the opposite problem. My websites have a problem where the keyboard is popping up all the time when there is no input boxes at all on the site!
Thank you so much for your answer MichelPM!!
How do I force the keyboard to stay open in Safari?