Gives you a reference to the DOM object, so you can assign event handlers or just mess around.
// draw a circle at coordinate 10,10 with radius of 10 var c = paper.circle(10, 10, 10); c.node.onclick = function () { c.attr("fill", "red"); };