Hi
I setted up a function that  should create a new circle when I click on 
it, but it does not work.


with firefox :

   <script type="text/javascript"> <![CDATA[
     function circle_click(evt) {
       document=evt.target.ownerDocument;
       node=document.createElement("circle");
       node.setAttribute("cx",10);
       node.setAttribute("cy",225);
       node.setAttribute("r",100);
       node.setAttribute("fill","green");
       evt.target.parentNode.appendChild(node);

     }
   ]]>
</script>

Best Regards
Steph


-----
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