I am working with a contenteditable div that will have the option to have inline html elements such as tags in the text flow.
At certain points I need to grab the caret position but have found that with the example code the position returned is incorrect if the caret is after an html child element.
I need a cross browser solution that will allow me to store the position of the caret so that it can be restored a split second later even with the presence of html elements in the text flow.
Example: http://jsfiddle.net/wPYMR/2/
I've answered a very similar question here: Editing Iframe Content in IE - problem in maintaining text selection
Here's a slightly simplified version of that answer:
If you're not changing the contents of the contenteditable element then the following functions will do. Call
saveSelection()
before doing whatever you need to do andrestoreSelection()
afterwards. If you are changing the content, I'd suggest using my Rangy library's save/restore selection module.Example use:
I posted a question about a cross-browser range/selection library and found some great stuff that I was able to solve all my needs with.
Here is my post: Cross Browser Selection Range Library?
What helped me best was Tim Down's rangy.