I am writing a autocompleter for a content editable DIV (need to render html content in the text box. So preferred to use contenteditable DIV over TEXTAREA). Now I need to find the cursor position when there is a keyup/keydown/click event in the DIV. So that I can insert the html/text at that position. I am clueless how I can find it by some computation or is there a native browser functionality that would help me find the cursor position in a contententeditable DIV.
feedback
|
|
If all you want to do is insert some content at the cursor, there's no need to find its position explicitly. The following function will insert a DOM node (element or text node) at the cursor position in all the mainstream desktop browsers:
If you would rather insert an HTML string:
UPDATE Following the OP's comments, I suggest using my own Rangy library, which adds a wrapper to IE | |||||||
feedback
|
|
Check this out, seems to be what you need. | |||||
feedback
|
|
I found this online, it might help you: http://niichavo.wordpress.com/2009/01/06/contenteditable-div-cursor-position/ | |||
|
feedback
|