1<html> 2<body onload="load()"> 3 This frame should get the focus. 4 <input id="box"></input> 5 <script> 6 function load() 7 { 8 document.getElementById("box").focus(); 9 } 10 </script> 11</body> 12</html> 13