1443902-2-ref.html (274B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 function init() 6 { 7 document.getElementById("t1").focus(); 8 document.getElementById("t1").setSelectionRange(4, 4); 9 } 10 </script> 11 </head> 12 <body onload="init()"> 13 <div id="d1"> 14 <input type="text" id=t1 value="ABCD"> 15 </div> 16 </body> 17 </html>