jquery Get the absolute x,y coordinates of the page elements, you can use the offset () method, there is a good coordinates below you can refer to the following
To get the absolute x,y coordinates of an element of a page, you can use the offset () method to: the code as follows: <span style= "color: #000066; Font-weight:bold ">var</span> X <span style=" color: #339933 ">=</span> $<span style=" color:# 009900 "> (</span><span style=" color: #3366CC "> ' #DivID ' </span><span style=" color: #009900 " >) </span>.<span style= "color: #660066" >offset</span><span style= "color: #009900" > (</ Span><span style= "color: #009900" >) </span>.<span style= "color: #660066" >top</span>< Span style= "COLOR: #339933" >;</span> <span style= "color: #000066; Font-weight:bold ">var</span> Y <span style=" color: #339933 ">=</span> $<span style=" color:# 009900 "> (</span><span style=" color: #3366CC "> ' #DivID ' </span><span style=" color: #009900 " >) </span>.<span style= "color: #660066" >offset</span><span style= "color: #009900" > (</ Span><span style= "color: #009900" >) </span>.<Span style= "COLOR: #660066" >left</span><span style= "color: #339933" >;</span> Get Relative ( Parent element) position: code as follows: <span style= "color: #000066; Font-weight:bold ">var</span> X <span style=" color: #339933 ">=</span> $<span style=" color:# 009900 "> (</span><span style=" color: #3366CC "> ' #DivID ' </span><span style=" color: #009900 " >) </span>.<span style= "color: #660066" >position</span><span style= "color: #009900" > ( </span><span style= "color: #009900" >) </span>.<span style= "color: #660066" >top</span> <span style= "color: #339933" >;</span> <span style= "color: #000066; Font-weight:bold ">var</span> Y <span style=" color: #339933 ">=</span> $<span style=" color:# 009900 "> (</span><span style=" color: #3366CC "> ' #DivID ' </span><span style=" color: #009900 " >) </span>.<span style= "color: #660066" >position</span><span style= "COLOR: #009900" > (</span><span style= "color: #009900" >) </span>.<span style= "color:# 660066 ">left</span><span style=" color: #339933 ">;</span>