How do you set the cursor position in a text field using jQuery? I\'ve got a text field with content, and I want the users cursor to be positioned at a certain offset when
Just remember to return false right after the function call if you're using the arrow keys since Chrome fricks the frack up otherwise.
{ document.getElementById('moveto3').setSelectionRange(3,3); return false; }