With jQuery, how would you find the offset position relative to a specific container?
For example, you have this:
<body style="padding:20px">
<div id="top-container" style="margin-top:20px">
<div id="one-level-container" style="margin-top:70px">
<div id="two-level-container" style="margin-top:120px">
<div id="ELEMENT" style="margin-top:10px">
</div>
</div>
</div>
</div>
</body>
(The padding and margin-top's are just there for examples.)
How would you check the position top of #ELEMENT to #top-container?
I've tried using jQuery's offset and position, but those don't seem to get the correct offset that I'm looking for.