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 can I delete this object later, for example by clicking 
| some button.

this.mark.parentNode.removeChild( this.mark );


Regards-
Doug

[EMAIL PROTECTED]
www.vectoreal.com ...for scalable solutions.
 




------------------------ Yahoo! Groups Sponsor --------------------~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/1U_rlB/TM
--------------------------------------------------------------------~-> 

-----
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
---- 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to