Answers for "html focus on input"

1

html prevent focus on input

<input type="text" id="yourID" value="test" readonly="readonly" /> 

You can change it in javascript with : 

document.getElementById("yourID").readOnly = false; //This enables the possibility to focus
Posted by: Guest on November-29-2020
3

focus js

focusMethod = function getFocus() {           
  document.getElementById("myTextField").focus();
}
Posted by: Guest on April-08-2020
0

focus on input

document.getElementById("myText").focus();
Posted by: Guest on April-19-2021
-1

focus js

<input type="text" id="myTextField" value="Text field.">
<p></p>
<button type="button" onclick="focusMethod()">Click me to focus on the text field!</button>
Posted by: Guest on April-08-2020

Browse Popular Code Answers by Language