При событии mouseenter / mouseleave я бы хотел зафиксировать абсолютную «верхнюю» позицию ячейки таблицы.
Пока что событие прикреплено так:
$('td[someAttr]').mouseenter(function(mouse) {
// how do we get the td's top absolute position?
//FYI: mouse.pageX and mouse.pageY would give the mouse position
});