Hi All
document.create ElementNS works fine on firefox, but not on IE.
I use this fuction to create SVG objects on the fly
for example.....
SVG.ns = "http://www.w3.org/2000/svg";
var svg = document.create ElementNS(SVG.n s, "svg:svg");
Some of the forums suggested to use document.create Element insteaad of document.create ElementNS on IE......
But I want to create an elemnt from the name space which is present in "http://www.w3.org/2000/svg"
how do i do that in IE.
Thanks
Prasanna
document.create ElementNS works fine on firefox, but not on IE.
I use this fuction to create SVG objects on the fly
for example.....
SVG.ns = "http://www.w3.org/2000/svg";
var svg = document.create ElementNS(SVG.n s, "svg:svg");
Some of the forums suggested to use document.create Element insteaad of document.create ElementNS on IE......
But I want to create an elemnt from the name space which is present in "http://www.w3.org/2000/svg"
how do i do that in IE.
Thanks
Prasanna
Comment