View Single Post
ישן 27-07-09, 04:22   # 2
LucifeR
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Jun 2008
מיקום: Usa
הודעות: 53
שלח הודעה באמצעות ICO אל LucifeR שלח הודעה באמצעות Yahoo אל LucifeR Send a message via Skype™ to LucifeR

LucifeR לא מחובר  

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>
__________________
Actual Girls
  Reply With Quote