Hi guys, I have some elements positioned via CSS this way:
#myItem{
position: absolute;
left: 50%;
margin-left: -350px;
}
I'd like to get their distance from top and left margin of the page. How can I get those measure with javascript/jquery?
Thanks