How to calculate the path to a wrapped element child?
.inli{
background-color:white;
display:inline;
white-space: pre-wrap;
word-break: break-word;
}
.parent{
width:300px;
height:300px;
background-color:black;
display:inline-block;
}
span{
background-color:red;
}
<div class="parent">
<div class="inli">aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa<span id="findme">x</span>aaaaaaaaaaaaaaaaaaa</div>
</div>
[Image][1]
[1]: https://i.stack.imgur.com/GRMry.png <-- How do I get the red path's length using js?