Answers for "focus input type text"

CSS
1

input focus border

input:focus{
	border-color: inherit;
    -webkit-box-shadow: none;
	box-shadow: none;
}
Posted by: Guest on July-27-2021
0

focus on input

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

Browse Popular Code Answers by Language