Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I need to move caret to end of 'contenteditable' node like on gmail notes widget

i read threads on stackoverflow, but that solutions use input's and doesn't work with content editable

share|improve this question

2 Answers

up vote 0 down vote accepted

This seems to work for me. It moves the caret to the end of the textarea.

function setCaret()
{
    ctrl = document.getElementById('txt1');
    pos = ctrl.value.length;
    if(ctrl.setSelectionRange)
    {
        ctrl.focus();
        ctrl.setSelectionRange(pos,pos);
    }
    else if (ctrl.createTextRange) {
        var range = ctrl.createTextRange();
        range.collapse(true);
        range.moveEnd('character', pos);
        range.moveStart('character', pos);
        range.select();
    }
}
share|improve this answer
Thak you. It working – avsej Jul 17 '09 at 12:05
Thats a textarea and not an arbitrary element with contentEditable=true. Do you have a solution for the later? – panzi Aug 27 '10 at 22:06
@panzi: see my solution for contenteditable elements. – Nico Burns Oct 5 '10 at 18:11
2  
Does not work for div[contenteditable=true]! – igor Jul 9 '12 at 14:34
avsej was asking for a contenteditable element. – think123 Aug 29 '12 at 10:22

Geowa4's solution will work for a textarea, but not for a contenteditable element.

This solution is for moving the caret to the end of a contenteditable element. It should work in all browsers which support contenteditable.

function setEndOfContenteditable(contentEditableElement)
{
    var range,selection;
    if(document.createRange)//Firefox, Chrome, Opera, Safari, IE 9+
    {
        range = document.createRange();//Create a range (a range is a like the selection but invisible)
        range.selectNodeContents(contentEditableElement);//Select the entire contents of the element with the range
        range.collapse(false);//collapse the range to the end point. false means collapse to end rather than the start
        selection = window.getSelection();//get the selection object (allows you to change selection)
        selection.removeAllRanges();//remove any selections already made
        selection.addRange(range);//make the range you have just created the visible selection
    }
    else if(document.selection)//IE 8 and lower
    { 
        range = document.body.createTextRange();//Create a range (a range is a like the selection but invisible)
        range.moveToElementText(contentEditableElement);//Select the entire contents of the element with the range
        range.collapse(false);//collapse the range to the end point. false means collapse to end rather than the start
        range.select();//Select the range (make it the visible selection
    }
}

It can be used by code similar to:

elem = document.getElementById('txt1');//This is the element that you want to move the caret to the end of
setEndOfContenteditable(elem);
share|improve this answer
Do you have a way to make this work in chrome? – Jason Apr 21 '10 at 22:19
geowa4's solution will work for textarea's in chrome, it will not work for contenteditable elements in any browser. mine works for contenteditable elements, but not for textareas. – Nico Burns Oct 5 '10 at 18:11
2  
This is the correct answer to this question, perfect, thanks Nico. – Rob Apr 30 '12 at 10:17
3  
The selectNodeContents part of Nico's was giving me errors in both Chrome and FF (didn't test other browsers) until I found out that I apparently needed to add .get(0) to the element that I was feeding the function. I guess this has to do with me using jQuery instead of bare JS? I learned this from @jwarzech at question 4233265. Thanks to all! – Max Starkenburg Sep 7 '12 at 2:05
1  
Yes, the function expects a DOM element, not a jQuery object. .get(0) retrieves the dom element which jQuery stores internally. You can also append [0], which is equivalent to .get(0) in this context. – Nico Burns Sep 7 '12 at 16:00
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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