Hi,
I have a textbox that i need to set focus on each page load. I have done this with the following
I then call this when the page loads, The problem is that it sets focus to the beginning of the textbox and not the end of the text within. This really is not what i want as I need the user to be able to add to the text in the textbox.
Any ideas how I can set focus to the end of the text in the textbox
I have a textbox that i need to set focus on each page load. I have done this with the following
Code:
<script language="JavaScript">
function setFocus()
{
FindPerson.TextBox1.focus();
}
</script>
Any ideas how I can set focus to the end of the text in the textbox