Do you mean to say that you need to know how many pixels the left edge
of the table cell is from the left edge of the table itself?
Try this example:
<table id="container">
<tr><td>X</td><td id="cell">Y</td><td>Z</td></tr>
</table>
var someOffset = $('cell').relativeTo($('container'));
var someLeft = someOffset.left;
--
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en.