Sometimes, we want to set focus on an element in an HTML form using JavaScript.
In this article, we’ll look at how to set focus on an element in an HTML form using JavaScript.
How to set focus on an element in an HTML form using JavaScript?
To set focus on an element in an HTML form using JavaScript, we can call the element’s focus
method.
For instance, we write
<input type="text" id="mytext" />
to add an input.
Then we write
document.getElementById("mytext").focus();
to select the input with getElementById
.
Then we call focus
to focus on the input.
Conclusion
To set focus on an element in an HTML form using JavaScript, we can call the element’s focus
method.