So I'm a total Javascript noob and am hoping someone can help me out with this problem. I have an iOS app with a UIwebview and I want to modify user selected text. Basically I want to modify the range object I get from the selection in Javascript. Here's a diagram.
<div id="div1">
==> I want to move the start range to here
<p>
==> user selection starts here
some text
</p>
<p>some more text</p>
==> I want to move the range end to here
</div>
<div id = "div2">
<p>some other text</p>
==> user selection ends here
<p>yet more text</p>
</div>
Thanks for your help.