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