I've got HTML code similar to this one:
<pre>
words words words
words <span> words mystery words</span>
words words words
</pre>
I'd like to get the character offset of "mystery" with respect to the pre tag using Javascript (native or MooTools). I can get it with respect to the span tag using the anchorNode property, but I can't find a way to get it with respect to the pre tag.
<span>tags are there. Are they counted as characters? – BoltClock♦ Mar 31 '11 at 23:54