
In the above image, I've selected the phrase 'macro up myself' which starts at index 140, and ends at index 155.
(Indexes are calculated via .outerHTML of the parent element (the div holding all the text))
Now, here in the second image, you can see that the span (the part that creates the light blue highlight in the HTML screenshot) isn't placed where it should be. Also, make note of the numbers in teh top left. The start index is the same, and the end index is just the end index from the first picture + the length of <span class="cha... ...50">
How I get the indexes: From the javascript side: (like in the first picture)
start_index = parent_element.html().indexOf(selection[0].outerHTML) - 33; // already have a large arbitrary offset, but I'd prefer to know why the indexes aren't lined up.
end_index = start_index + html.length;
These indexes are passed along to the rails server, where it should insert spans into the text, but the indexes don't match the location of the span highlight in the HTML.
So my question is: how do I get an accurate index?

innerHTMLandouterHTML) does not necessarily precisely match the equivalent initial HTML sent by the server. That being the case, trying to do this in this way is futile. – Tim Down Nov 9 '11 at 11:11