I have a textarea and when I click in it I want to move the caret to the last character so Something[caret]

function moveCaret(){
     // Move caret to the last character
}

<textarea onclick="moveCaret();">
     Something
</textarea>

As I know this is somehow possible with the TextRange object, but I don't really know how to use it :\

EDIT: I would love to see only pure javascript solutions so no libraries please.

link|improve this question

3  
Please do not do that. It is annoying like hell if text fields do stuff like that. If i click at a certain position I expect the cursor to be at this position; not at some position the developer of the site liked. Automatically selecting all contents is more acceptable as long as it happens immediately when focusing it. – ThiefMaster Jan 17 '11 at 17:11
feedback

3 Answers

up vote 8 down vote accepted

The following function will work in all major browsers, for both textareas and text inputs:

function moveCaretToEnd(el) {
    if (typeof el.selectionStart == "number") {
        el.selectionStart = el.selectionEnd = el.value.length;
    } else if (typeof el.createTextRange != "undefined") {
        el.focus();
        var range = el.createTextRange();
        range.collapse(false);
        range.select();
    }
}

However, you really shouldn't do this whenever the user clicks on the textarea, since the user will not be able to move the caret with the mouse. Instead, do it when the textarea receives focus. There is also a problem in Chrome, which can be worked around as follows:

Full example: http://www.jsfiddle.net/ghAB9/3/

HTML:

<textarea id="test">Something</textarea>

Script:

var textarea = document.getElementById("test");
textarea.onfocus = function() {
    moveCaretToEnd(textarea);

    // Work around Chrome's little problem
    window.setTimeout(function() {
        moveCaretToEnd(textarea);
    }, 1);
};
link|improve this answer
it doesn't work on IE9 – vsync Sep 14 '11 at 8:05
@vsync: I just tried the jsFiddle example in IE 9 and it worked fine. What problem are you seeing? – Tim Down Sep 14 '11 at 8:28
ho my bad! sorry, it works just fine :) – vsync Sep 14 '11 at 8:33
Thank you! It works perfectly for me. – zac1987 Jan 20 at 16:54
feedback

Have a look at the solutions offered here:

Use JavaScript to place cursor at end of text in text input element

link|improve this answer
1  
it should be noted that the question there wasnt for textareas, rather for input type=text – davin Jan 17 '11 at 17:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.