1 2 3 4 5 6 7 8 9 10 11 12 13
| var svg = document.getElementsById('mysvg'); //Get svg element
var aLine= document.createElementNS("http://www.w3.org/2000/svg", 'line');
aLine.setAttribute('x1',0);
aLine.setAttribute('y1',200);
aLine.setAttribute('x2',0);
aLine.setAttribute('y2',200);
svg.appendChild(aLine);
var aLine2= document.createElementNS("http://www.w3.org/2000/svg", 'line');
aLine2.setAttribute('x1',0);
aLine2.setAttribute('y1',200);
aLine2.setAttribute('x2',200);
aLine2.setAttribute('y2',0);
svg.appendChild(aLine2); |