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

I have an question about getting the page coordinates of a text selection in javascript. I do know how to get the selected text etc. but that is not what I'm looking for... I need the coordinates (in pixels) of the beginning of the text selection.

I tried using the cursor coordinates but this didn't work quite well because the cursor coordinates and the beginning of the selection are not always the same (for example when a user drags over a text).

I hope someone has the solution!

share|improve this question

2 Answers

up vote 13 down vote accepted

In recent non-IE browsers (Firefox 4+, WebKit browsers released since early 2009, Opera 11, maybe earlier), you can use the getClientRects() method of Range. In IE, you can use the boundingLeft and boundingTop properties of the TextRange that can be extracted from the selection. Here's a function that will do what you want in recent browsers.

jsFiddle: http://jsfiddle.net/aSUSh/5/

Code:

function getSelectionCoords() {
    var sel = document.selection, range;
    var x = 0, y = 0;
    if (sel) {
        if (sel.type != "Control") {
            range = sel.createRange();
            range.collapse(true);
            x = range.boundingLeft;
            y = range.boundingTop;
        }
    } else if (window.getSelection) {
        sel = window.getSelection();
        if (sel.rangeCount) {
            range = sel.getRangeAt(0).cloneRange();
            if (range.getClientRects) {
                range.collapse(true);
                var rect = range.getClientRects()[0];
                x = rect.left;
                y = rect.top;
            }
        }
    }
    return { x: x, y: y };
}

I'm going to add a fuller implementation of this with fallbacks for older browsers to my Rangy library soon.

UPDATE

I submitted a WebKit bug as a result of the comments, and it's now been fixed.

https://bugs.webkit.org/show_bug.cgi?id=65324

share|improve this answer
Works perfectly on single line selections, but when you select multiple lines (starting from somewhere half-where in the first line) it shows the coordinates for the beginning of the first selection-line not the beginning of the selection it self.... I know that is probably because of the getBounding function but is there any way to change that? – Bouke Jul 27 '11 at 18:02
@Bouke: Ah, fair point. I've updated my answer to do as you asked, by collapsing the range to a single point at the start before getting its position. – Tim Down Jul 27 '11 at 22:46
That works great on firefox, but now it doesn't seem to work on webkit browsers anymore... Seems like this is a webkit bug, maybe I need to use your older script as a fallback. – Bouke Jul 28 '11 at 11:41
@Bouke: You're right. WebKit's getBoundingClientRect() returns null for collapsed ranges, which is unhelpful. Working on it... – Tim Down Jul 28 '11 at 17:02
1  
@Bouke: Updated again, and is now working on WebKit. – Tim Down Jul 28 '11 at 17:08
show 3 more comments

I have Opera 12.14 and function range.getClientRects()[0]; returns undefined.

share|improve this answer

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.