i have some part of text with html tags , for example

<b>something</b>

i select some part of text for example "some".

with getSelection().getRangeAt(0); i get position of caret (textcursor), so i know which part of text i've selected.

i have startOffset and endOffset. but problem is, that startOffset and endOffset ignores html tags, so numbers which it returns are not bad, and then i don't know on which part of text i have to apply

<span style="background-color: somecolor ">some</span>

any ides how to solve this ? thanks

link|improve this question

31% accept rate
just found this, and going to read that, maybe will help quirksmode.org/dom/range_intro.html – mm. Sep 25 '09 at 9:36
feedback

1 Answer

up vote 1 down vote accepted
<b id='str1'>something</b>
<script>
function jsReplace()
{
  var elem = document.getElementById('str1')
  elem .innerHTML = elem .innerHTML.replace('some', '<span style="background-color: somecolor ">some</span>')

}
</script>
link|improve this answer
yes, but what will you do , if there isn't id in that b tag ? – mm. Sep 25 '09 at 9:37
how do you get your string and from which control? – Kheu Sep 25 '09 at 12:02
with selection and range, user selects text with mouse – mm. Sep 25 '09 at 12:04
ok use getSelection() function jsReplace() { var str= document.getSelection() /*supposing it's ie, u could try window.getSelection and document.selection*/ str=str.replace('some', '<span style="background-color: somecolor ">some</span>') } and apply the function onmousedown – Kheu Sep 25 '09 at 14:04
feedback

Your Answer

 
or
required, but never shown

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