Answers for "make input field focus javascript"

2

set focus on input field javascript

window.onload=function(){
 document.getElementById("id_here").focus();
}
// id_here = put the id of the HTML element where you want to set focus.
Posted by: Guest on April-23-2021
-1

focus on input

$("input:text:visible:first").focus();
Posted by: Guest on April-18-2021

Code answers related to "make input field focus javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language