I am trying to get all the "polyline" tags and then find the parent node
above it so I can transform it.
var poly = svgDocument.get ElementsByTagNa me("polyline") ;
for ( var i=0; i < poly.length; i++ )
{
myobj=poly.pare ntNode(i);
alert(i + myobj);
}
This is not working. Any help is appreciated.
Mike
above it so I can transform it.
var poly = svgDocument.get ElementsByTagNa me("polyline") ;
for ( var i=0; i < poly.length; i++ )
{
myobj=poly.pare ntNode(i);
alert(i + myobj);
}
This is not working. Any help is appreciated.
Mike
Comment