Is it possible to get the top position of an element using javascript/jquery ?
The element is a table, if that matters.
$("#myTable").offset().top;
This will give you the computed offset (relative to document) of any object.