// Get the top, left coordinates of the elementconst rect = ele.getBoundingClientRect();// Add the scroll postion to get the full distance from the element// to the top, left sides of the documentconst top = rect.top + document.body.scrollTop;const left = rect.left + document.body.scrollLeft;