[svg-developers] Hi all. Please say, how to delete object?

2005-11-10 Thread algornik7
Hi all. I have initialized svg object: this.mark = SVGDocument.createElementNS(null, circle); how can I delete this object later, for example by clicking some button. Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a

RE: [svg-developers] Hi all. Please say, how to delete object?

2005-11-10 Thread Doug Schepers
Hi, algornik7- | I have initialized svg object: | | this.mark = SVGDocument.createElementNS(null, circle); When you create an SVG elements, you *must* put it in the SVG namespace: var svgns = 'http://www.w3.org/2000/svg'; this.mark = SVGDocument.createElementNS(svgns, circle); | how