1.offset() will return the offset position of an element as a simple object, eg:
2
3var position = $(element).offset(); // position = { left: 42, top: 567 }
4You can use this return value to position other elements at the same spot:
5
6$(anotherElement).css(position)