vote up 0 vote down star
1

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

flag

1 Answer

vote up 2 vote down check

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();
    }
}
link|flag
Thak you. It working – avsej Jul 17 at 12:05

Your Answer

Get an OpenID
or

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