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

I'm finding tons of good, crossbrowser anwers on how to SET the cursor or caret position in a contentEditable DIV, but none on how to GET or find its position...

What I want to do is know the position of the caret within this div, on keyup.

So, when the user is typing text, I can at any point know its cursor's position within the div.

EDIT: I'm looking for the INDEX within the div contents (text), not the cursor coordinates.

<div id="contentBox" contentEditable="true"></div>

$('#contentbox').keyup(function() { 
    // ... ? 
});
share|improve this question
What do you actually want to do with the caret position once you've got it? – Tim Down Oct 19 '10 at 23:45
Look at its position in the text. Then, look up the last occurance of '@' before that position. So just some text logic. – Bertvan Oct 20 '10 at 4:39
Also, I'm not planning to allow other tags within the <diV>, only text – Bertvan Oct 20 '10 at 4:43
ok, yes I am going to need other tags within the <div>. There will be <a> tags, but there will be no nesting... – Bertvan Oct 20 '10 at 16:49
@Bertvan: if the caret's inside an <a> element inside the <div>, what offset do you want then? The offset within the text inside the <a>? – Tim Down Oct 21 '10 at 11:02
show 2 more comments

2 Answers

up vote 12 down vote accepted

The following code assumes:

  • There is always a single text node within the editable <div> and no other nodes
  • The editable div does not have the CSS white-space property set to pre

Code:

function getCaretPosition(editableDiv) {
    var caretPos = 0, containerEl = null, sel, range;
    if (window.getSelection) {
        sel = window.getSelection();
        if (sel.rangeCount) {
            range = sel.getRangeAt(0);
            if (range.commonAncestorContainer.parentNode == editableDiv) {
                caretPos = range.endOffset;
            }
        }
    } else if (document.selection && document.selection.createRange) {
        range = document.selection.createRange();
        if (range.parentElement() == editableDiv) {
            var tempEl = document.createElement("span");
            editableDiv.insertBefore(tempEl, editableDiv.firstChild);
            var tempRange = range.duplicate();
            tempRange.moveToElementText(tempEl);
            tempRange.setEndPoint("EndToEnd", range);
            caretPos = tempRange.text.length;
        }
    }
    return caretPos;
}

$('#contentbox').keyup(function() { 
    alert(getCaretPosition(this));
});
share|improve this answer
Sorry, had to undo the answer: I am going to need other tags. There will be <a> tags within the <div>, but no nesting. Will test your solution, maybe this even works for what I need... – Bertvan Oct 20 '10 at 16:50
Oh, and I know I first said that there wouldn't be any other tags in there. Sorry, my mistake. – Bertvan Oct 20 '10 at 16:51
1  
This won't work if there's any other tags in there. Question: if the caret's inside an <a> element inside the <div>, what offset do you want then? The offset within the text inside the <a>? – Tim Down Oct 20 '10 at 17:01
You might want to remove console.log as this will crash in browsers that do not have firebug installed. – Nico Burns Oct 20 '10 at 18:34
@Nico: Good spot, thanks. Removed now. – Tim Down Oct 20 '10 at 21:05
show 14 more comments
//global savedrange variable to store text range in
var savedrange = null;

function getSelection()
{
    var savedRange;
    if(window.getSelection && window.getSelection().rangeCount > 0) //FF,Chrome,Opera,Safari,IE9+
    {
        savedRange = window.getSelection().getRangeAt(0).cloneRange();
    }
    else if(document.selection)//IE 8 and lower
    { 
        savedRange = document.selection.createRange();
    }
    return savedRange;
}

$('#contentbox').keyup(function() { 
    var currentRange = getSelection();
    if(window.getSelection)
    {
        //do stuff with standards based object
    }
    else if(document.selection)
    { 
        //do stuff with microsoft object (ie8 and lower)
    }
});

Note: the range object its self can be stored in a variable, and can be re-selected at any time unless the contents of the contenteditable div change.

Reference for IE 8 and lower: http://msdn.microsoft.com/en-us/library/ms535872(VS.85).aspx

Reference for standards (all other) browsers: https://developer.mozilla.org/en/DOM/range (its the mozilla docs, but code works in chrome, safari, opera and ie9 too)

share|improve this answer
Thanks, but how exactly do I get the 'index' of the caret position in the div contents? – Bertvan Oct 19 '10 at 20:22
OK, it looks like calling .baseOffset on .getSelection() does the trick. So this, together with your answer, answers my question. Thanks! – Bertvan Oct 19 '10 at 20:32
2  
Unfortunately .baseOffset only work in webkit (i think). It also only gives you the offset from the imediate parent of the caret (if you have a <b> tag inside the <div> it will give the offset from the start of the <b>, not the start of the <div>. Standards based ranges can use range.endOffset range.startOffset range.endContainer and range.startContainer to get the offset from the parent node of the selection, and the node itself (this includes text nodes). IE provides range.offsetLeft which is the offset from the left in pixels, and so useless. – Nico Burns Oct 19 '10 at 20:52
It is best just to store the range object its self and use window.getSelection().addrange(range); <--standards and range.select(); <--IE for re-positioning the cursor in the same place. range.insertNode(nodetoinsert); <--standards and range.pasteHTML(htmlcode); <--IE to insert text or html at the cursor. – Nico Burns Oct 19 '10 at 20:56
The Range object returned by most browsers and the TextRange object returned by IE are extremely different things, so I'm not sure this answer solves much. – Tim Down Oct 19 '10 at 23:44
show 3 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.