$(elem).offset().top
, а как получить позицию элемента относительно родителя? Учитывая, что родитель на момент выполнения(function( $ ) {
$(selector).each(function( index ) {
var _self = $(this),
_parent = _self.closest(parent_selector),
_offset_self = _self.offset().top,
_offset_parent = _parent.offset().top,
_difference = parseInt( _offset_self - _offset_parent );
console.log( _difference );
});
})(window.jQuery);
_difference