[EMAIL PROTECTED] wrote:
So, I need to know their posiztion and size.
First, neither concept is well-defined for an "element". In particular, an "element" may appear at several different places on the page at once.
If you just want some random numbers that will sometimes work, and only care about HTML, you can use offsetWidth/Height and offsetLeft/Top together with offsetParent to compute "sizes" and "positions". See the MSDN documentation for these properties.
-Boris _______________________________________________ dev-tech-layout mailing list [email protected] https://lists.mozilla.org/listinfo/dev-tech-layout

