Raw File
1443902-4-ref.html
<!DOCTYPE html>
<html>
<head>
<script>
function init()
{
  document.getElementById("t1").focus();
  document.getElementById("t1").setSelectionRange(4, 4);
}
</script>
</head>
<body onload="init()">
<div id="d1">
<input type="text">
</div>
<input type="text" id=t1 value="ABCD">
</body>
</html>
back to top