Reputation: 4169
Is There any way to find an element position related to latest relative position parent?
I want a javascript way
assume we have this HTML
<div id="div1" style="position:relative">
<div id="div2" style="padding:10px">
<div id="div3" style="position:absolute top:15px; left:20px;">Stack</div>
</div>
</div>
I want position of "div3" related to "div1".
Thanks
Upvotes: 7
Views: 3704