Here is the code snippet I'm currently using to modify a path object within an SVG:
el.setAttribute("from", start[0] + "," + start[1]);
var path = line.childNodes[0];
path.setAttribute("d", "M " + start[0] + " " + start[1] + " L " + end[0] + " " + end[1]);
This code works perfectly in Firefox and Chrome, but unfortunately not in Internet Explorer. Despite modifying the attributes as expected, the changes are not reflected in IE. How can I adjust the attributes in IE to make sure they impact the explorer?
Thank you.