i would like to retrieve the element offset starting from his own x center coordinates.
how can i do it?
Actually i can find the window offset of an element but it retrieves the coordinates from the border of the element like this:
var _position = $(this).offset();
You have to use
offset()to get the top and left position, then add half of theheight()andwidth()values to them. That gives the center coordinates.If you need to consider the padding property in your calculations, use the following: