Andres Toussaint wrote:
I want to merge a second SVG document into my first document, already
displayed in a JSVGCanvas, but do not want to place it through a <image>
element because i do want to have full access to the second SVG DOM.
WHAT IS THE PROPER WAY TO DO IT?
Use Document.importNode(root2, true), to clone the first document
'under' the new document. Then just append the result where you
want it in the parent document. You may want to use the
x/y/width/height attrs on the SVG element to position/size it.
Thanks.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]