Show Virtual Keyboard
-
thaipbssmarttv last edited by
I develop app on Sony Internet TV (Opera TV OS) and I can't show virtual keyboard when textbox focused.
I use event.stopPropagation(); and event.preventDefault(); in my keydown code. Can I show virtual keyboard when textbox active ?
-
cgepfert last edited by
Did you try this?
var input = document.getElementById('myInput');
and then
input.focus()
or in case if your element has focus
input.blur() input.focus()