I have a Div which is positioned via javascript.
$("#'+customer.Id+'").css({
left: customerOffset,
width: customerWidth- endDayOffset,
height: document.getElementById("Planning").rows[0].clientHeight,
display: "normal",
position: "absolute"
});
$("#'+customer.Id+'").offset({ top: bottomTop })
This div is placed on a table cell with a certain Id. This Id I want to obtain. How is this possible?