The DOM Input Time autofocus Property in HTML DOM is used to set or return whether the time field should automatically get focus or not when the page loads. This Property is used to reflect the HTML autofocus attribute.
Syntax:
Property Values:
- true: It specify that the time field get focus.
- false: It has a default value. It specify that the time field does not get focus.
Return Value: It returns a Boolean value which represents that the time field get focus or not when the page loads.
Example-1: This Example illustrates how to return the Property.
<!DOCTYPE html>
< html >
< head >
< title >
DOM Input Time autofocus Property
</ title >
</ head >
< body >
< center >
< h1 style = "color:green;" >
GeeksForGeeks
</ h1 >
< h2 >
DOM Input Time autofocus Property
</ h2 >
< label for = "uname"
style = "color:green" >
< b >Enter time</ b >
</ label >
< input type = "time"
id = "gfg"
name = "Geek_time"
value = "18:00"
placeholder = "Enter time"
step = "5"
min = "16:00"
max = "22:00:"
autofocus>
< br >
< br >
< button type = "button"
onclick = "geeks()" >
Click
</ button >
< p id = "GFG"
style="font-size:24px;
color:green'">
</ p >
< script >
function geeks() {
var link =
document.getElementById(
"gfg").autofocus;
document.getElementById(
"GFG").innerHTML = link;
}
</ script >
</ center >
</ body >
</ html >
|
Output:
Before Clicking On Button :

After Clicking On Button:

Example-2: This Example illustrates how to set the Property.
<!DOCTYPE html>
< html >
< head >
< title >
DOM Input Time autofocus Property
</ title >
</ head >
< body >
< center >
< h1 style = "color:green;" >
GeeksForGeeks
</ h1 >
< h2 >DOM Input Time autofocus Property</ h2 >
< label for = "uname"
style = "color:green" >
< b >Enter time</ b >
</ label >
< input type = "time"
id = "gfg"
name = "Geek_time"
value = "18:00"
placeholder = "Enter time"
step = "5"
min = "16:00"
max = "22:00:"
autofocus>
< br >
< br >
< button type = "button"
onclick = "geeks()" >
Click
</ button >
< p id = "GFG"
style="font-size:24px;
color:green'">
</ p >
< script >
function geeks() {
var link =
document.getElementById(
"gfg").autofocus = false;
document.getElementById(
"GFG").innerHTML = link;
}
</ script >
</ center >
</ body >
</ html >
|
Output :
Before Clicking On Button :

After Clicking On Button :

Supported Browsers: The browser supported by DOM input Time autofocus property listed below:
- Google Chrome
- Internet Explorer 10.0 +
- Firefox
- Opera
- Safari
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Nov, 2019
Like Article
Save Article