Suppose I have this HTML element:

<div id="parent">
 Hello everyone! <a>This is my home page</a>
 <p>Bye!</p>
</div>

And the user selects "home" with his mouse.

I want to be able to determine how many characters into #parent his selection starts (and how many characters from the end of #parent his selection ends). This should work even if he selects an HTML tag. (And I need it to work in all browsers)

range.startOffset looks promising, but it is an offset relative only to the range's immediate container, and is a character offset only if the container is a text node.

link|improve this question

66% accept rate
>This should work even if he selects an HTML tag< What do you mean by this? How will someone select a HTML tag? Please explain. – Satyajit Jan 27 '11 at 0:42
If the user selects everything in #parent, his selection will include some HTML tags (<a> and <p>) – Horace Loeb Jan 27 '11 at 2:45
feedback

1 Answer

up vote 8 down vote accepted

As it happens, I answered a very similar question a few days ago: Get caret (cursor) position in contentEditable area containing HTML content

UPDATE

However, I think I over-complicated that answer. Here's a function that will get the character offset of the caret within the specified element; however, this is a naive implementation that will almost certainly have inconsistencies with line breaks, and makes no attempt to deal with text hidden via CSS (I suspect IE will correctly ignore such text while other browsers will not). To handle all this stuff properly would be tricky.

Live example: http://jsfiddle.net/TjXEG/1/

function getCaretCharacterOffsetWithin(element) {
    var caretOffset = 0;
    if (typeof window.getSelection != "undefined") {
        var range = window.getSelection().getRangeAt(0);
        var preCaretRange = range.cloneRange();
        preCaretRange.selectNodeContents(element);
        preCaretRange.setEnd(range.endContainer, range.endOffset);
        caretOffset = preCaretRange.toString().length;
    } else if (typeof document.selection != "undefined" && document.selection.type != "Control") {
        var textRange = document.selection.createRange();
        var preCaretTextRange = document.body.createTextRange();
        preCaretTextRange.moveToElementText(element);
        preCaretTextRange.setEndPoint("EndToEnd", textRange);
        caretOffset = preCaretTextRange.text.length;
    }
    return caretOffset;
}
link|improve this answer
So if I use that answer for non-IE, and stackoverflow.com/questions/4811006/… for IE, I'll be set? – Horace Loeb Jan 27 '11 at 2:46
@Horace: I think so. Actually, I wonder if I over-complicated that answer. I'll try and bring the two together now. – Tim Down Jan 27 '11 at 9:24
@Horace: Answer updated. – Tim Down Jan 27 '11 at 9:41
feedback

Your Answer

 
or
required, but never shown

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