The autofocus
property sets or gets
whether a time field can auto focus when the page loads.
autofocus |
Yes | No | No | Yes | Yes |
Return the autofocus property.
var v = timeObject.autofocus
Set the autofocus property.
timeObject.autofocus=true|false
Value | Description |
---|---|
true|false | Set whether a time field can auto focus when the page loads
|
A Boolean type value, true if the time field automatically gets focus when the page loads, otherwise false.
The following code shows how to get if a time field can auto focus upon page load.
<!DOCTYPE html>
<html>
<body>
<!--from w w w . j ava 2s . c om-->
<input type="time" id="myTime" autofocus>
<button onclick="myFunction()">test</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myTime").autofocus;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
The code above is rendered as follows: