HTML
<input id="inputText" type="text" />
JS
document.getElementById('inputText').focus();
When My page is opened, I want to show the mobile keyboard by focusing on the input
tag.
HTML
<input id="inputText" type="text" />
JS
document.getElementById('inputText').focus();
When My page is opened, I want to show the mobile keyboard by focusing on the input
tag.