html
<svg>
<polyline points="0,0 100,100" style="fill:none;stroke:black;stroke-width:3"/>
</svg>
jquery
$("svg").css("width",$(document).width());
$("svg").css("height",$(document).height()-10);
$("polyline").click(function(){
alert($(this).attr("points"));
});
result
<-- alert -->
object SvgPointList
Question
How to get attr svg points?