1<html> 2 <script type="text/javascript"> 3 function autofocus() { 4 document.getElementById('inputfield').focus(); 5 } 6 window.onload = autofocus; 7 </script> 8 <body> 9 <p>This page has a auto focused input field.</p> 10 <input type="text" id="inputfield" /> 11 </body> 12</html> 13