HTML קוד:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>set cursor position</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
window.onload=function() {
setCursor(document.getElementById('input_name'),3,6)
}
function setCursor(el,st,end)
{
if(el.setSelectionRange)
{
el.focus();
el.setSelectionRange(st,end);
}
else
{
if(el.createTextRange)
{
range=el.createTextRange();
range.collapse(true);
range.moveEnd('character',end);
range.moveStart('character',st);
range.select();
}
}
}
</script>
</head>
<body>
<div>
<textarea id="input_name" name="input_name" rows="10" cols="30">Hello World</textarea>
</div>
</body>
</html>