I'm trying to use document.createElement('circle') to work with svgs but Chrome creates a end tag to circle giving
<circle></circle>
which results of an error. How can I create an element without an ending that?
|
I'm trying to use document.createElement('circle') to work with svgs but Chrome creates a end tag to circle giving
which results of an error. How can I create an element without an ending that? |
|||
|
You might want to take a look at this article SVG Scripting with JavaScript Part 1: Simple Circle The method you're looking for is:
Edit: Credit where credit is due |
|||
|
|
|
try using
|
|||
|
|
createElement. The parser turns an XML document into a DOM (where there are only nodes, not tags). You can manipulate it all you like. If you turn it back into an XML document, then you get tags. – Quentin Aug 9 '11 at 21:24