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
});