Can you determine the offset of a ChildElement in relation to a specific parent element?
For instance, if a DIV is nested inside a parent DIV with the ID "xyz"
Is there a method to achieve this using jQuery?
let parent = $("#xyz");
let child = $("#abc");
child.offset(parent);
Appreciate your help