<html>
<body>
Checkbox: <input type="checkbox" id="myCheck" autofocus>
<p>Click the "Try it" button to find out if the checkbox automatically gets focus when the page loads.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myCheck").autofocus;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_checkbox_autofocus by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:14 GMT -->
</html>