Possible Duplicate:
Disable keyboard input on Android TimePicker
I have a Jquery UI datepicker on an input type=text element
$( "#date" ).datepicker();
…
<input type="text" id="date"/>
Using dolphin browser on android, selecting the datepicker pops up a keyboard (as well as showing the datepicker itself..)
How can I disable that and not show the keyboard?
Thanks
I finally found a way to achieve this.
Dolphin shows the keyboard if an input type=text element gets focus. (unbinding the focus event doesn’t help)
So I remove focus from it when clicked: