I am trying to create a custom keyboard on an iPad application. But each time the input get the focus, the native iPad keyboard pops up. How can I prevent this, in JavaScript.>
The best thing to do is to stop the event on the onclick event. html :
Javascript :
function myOnClickEvent(e){ e.stopPropagation(); }
Dojo :
function myOnClickEvent(e){ dojo.stopEvent(e); }
Sencha :
function myOnClickEvent(e){ e.stopEvent(); }
I hope this help.