up vote 15 down vote favorite
7
share [g+] share [fb]

For a project of mine I would love to provide auto completion for a specific textarea. Similar to how intellisense/omnicomplete works. For that however I have to find out the absolute cursor position so that I know where the DIV should appear.

Turns out: that's (nearly I hope) impossible to achieve. Does anyone has some neat ideas how to solve that problem?

link|improve this question

40% accept rate
feedback

4 Answers

It's not perfect and it's most Definitely a hack, but I got it to work pretty well on WinXP IE, FF, Safari, Chrome and Opera.

As far as I can tell there's no way to directly find out the x/y of a cursor on any browser. The IE method, mentioned by Adam Bellaire is interesting, but unfortunately not cross-browser. I figured the next best thing would be to use the characters as a grid.

Unfortunately there's no font metric information built into any of the browsers, which means a monospace font is the only font type that's going to have a consistent measurement. Also, there's no reliable means of figuring out a font-width from the font-height. At first I'd tried using a percentage of the height, which worked great. Then I changed the font-size and everything went to hell.

I tried one method to figure out character width, which was to create a temporary textarea and keep adding characters until the scrollHeight (or scrollWidth) changed. It seems plausable, but about halfway down that road, I realized I could just use the cols attribute on the textarea and figured there are enough hacks in this ordeal to add another one. This means you can't set the width of the textarea via css. You HAVE to use the cols for this to work.

The next problem I ran into is that, even when you set the font via css, the browsers report the font differently. When you don't set a font, mozilla uses monospace by default, IE uses Courier New, Opera "Courier New" (with quotes), Safari, 'Lucida Grand' (with single quotes). When you do set the font to monospace, mozilla and ie take what you give them, Safari comes out as -webkit-monospace and Opera stays with "Courier New".

So now we initialize some vars. Make sure to set your line height in the css as well. Firefox reports the correct line height, but IE was reporting "normal" and I didn't bother with the other browsers. I just set the line height in my css and that resolved the difference. I haven't tested with using ems instead of pixels. Char height is just font size. Should probably pre-set that in your css as well.

Also, one more pre-setting before we start placing characters - which really had me scratching my head. For ie and mozilla, texarea chars are < cols, everything else is <= chars. So Chrome can fit 50 chars across, but mozilla and ie would break the last word off the line.

Now we're going to create an array of first-character positions for every line. We loop through every char in the textarea. If it's a newline, we add a new position to our line array. If it's a space, we try to figure out if the current "word" will fit on the line we're on or if it's going to get pushed to the next line. Punctuation counts as a part of the "word". I haven't tested with tabs, but there's a line there for adding 4 chars for a tab char.

Once we have an array of line positions, we loop through and try to find which line the cursor is on. We're using hte "End" of the selection as our cursor.

x = (cursor position - first character position of cursor line) * character width

y = (cursor line + 1 * line height) - scroll position

I'm using jquery 1.2.6, jquery-fieldselection, and jquery-dimensions

The Demo: http://enobrev.info/c

link|improve this answer
Nice, but I find it bugging in Chrome (2.0.172.37). To reproduce, first set the cursor on the top of textarea, then press 2 times pagedown so the textarea is scrolled and cursor moves to bottom. After this, the "Here I Am!" -label is always positioned too low (about two rows of text). Firefox seems to suffer from the very same syndrome, but it quickly fixes the position (div shows up in wrong place only once). What might be the trick here? – Tuukka Mustonen Apr 29 '10 at 13:41
recent google doc uses manually drawn cursor and calculated text position for texts...i wonder how they do it.... – iamgopal Jul 16 '10 at 16:52
@iamgopal, how can i see that in action? – enobrev Jul 16 '10 at 17:26
I don't think they disclose much, but here is the related blogpost... googledocs.blogspot.com/2010/05/… – iamgopal Jul 17 '10 at 11:00
I see what you're saying. At least at the moment, when I open Google Docs and Chromium's developer tools, it looks like plain HTML. When trying to get a popup menu (like with spellcheck), it just puts a span around the word, and I figure they're grabbing the coordinates of the span. As for their explanation in that blog post, if they're explicitly positioning characters one by one (maybe with canvas?), then there's no doubt that it's set up so all the positioning information is easily attainable. – enobrev Jul 17 '10 at 15:22
feedback

This blog post seems to address your question, but unfortunately the author admits he has only tested it in IE 6.

link|improve this answer
feedback

I posted a topic related to this problem in Russian JavaScript related site.

If you don't understand Russian try translated by Google version: http://translate.google.ru/translate?js=y&prev=_t&hl=ru&ie=UTF-8&layout=1&eotf=1&u=http://javascript.ru/forum/events/7771-poluchit-koordinaty-kursora-v-tekstovom-pole-v-pikselyakh.html&sl=ru&tl=en

Thre is some markup issues in the code examples in translated version so you can check them in original one.

The idea is simple. There is no easy, universal and cross-browser method to get cursor position in pixels. Frankly speaking there is but only for Internet Explorer.

In other browsers if you do really need to calculate it you have to create invisible DIV, copy all styles and content of the text box into that DIV, then insert HTML element at exactly the same position in text where the caret is in the text box and get coordinates of that element.

link|improve this answer
feedback

Google is your friend: Floating Layer At Cursor Position http://www.willmaster.com/blog/css/floating-layer-at-cursor-position.php

Edit: Or this: http://www.webreference.com/programming/javascript/ncz/column2/

But I think I am missing some information. Is the problem that you cannot get the DIV to display over the textbox?

EDIT 2: Oops you want the cursor position in the textbox? Convoluted, but really GOOGLE IS YOUR FRIEND:

http://the-stickman.com/web-development/javascript/finding-selection-cursor-position-in-a-textarea-in-internet-explorer/

link|improve this answer
This example deals with the mouse cursor position, but I believe the original poster meant the text cursor position, right? – PeterAllenWebb Sep 24 '08 at 17:11
Oh probably. I guess I really did mis-read it. – Kolten Sep 24 '08 at 17:14
Yes. the text cursor position was asked. – Armin Ronacher Sep 24 '08 at 17:16
3  
Stack Overflow suggested I leave a comment as to why I'm downvoting, so here goes: Google is your friend comes across as condescending. Also some people search Stack Overflow before google, so it's handy to have a commonly-asked question asked and answered here even if it's asked and answered elsewhere on the net. – Ben Atkin Aug 1 '11 at 20:17
feedback

Your Answer

 
or
required, but never shown

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