Does anyone know if there a way to get the position and height/width of a rendered DOM object/node (for example a table)?
In case anyone needs it, I found it... It's PageX or clientX... this.x = node.pageX ? node.pageX : node.clientX; this.y = node.pageY ? node.pageY : node.clientY; Code (javascript):