Node.js examples for DOM:Node
Get node position
function getPosition(node) { var x = 0, y = 0; while(node) {/*from www .j av a 2s.c o m*/ x += parseInt(node.offsetLeft); y += parseInt(node.offsetTop); node = node.offsetParent; } return { x : x, y : y } }