Text Doesn't Appear In DOM Object?
I'm trying to create an object in javascript and append text to it. I can append text to the svg just fine but when i try to append it to a circle for example, it doesn't appear. T
Solution 1:
SVGs have to follow a certain structure. Appending a text
element to a circle
(or rect
or similar) isn't valid so it won't be shown.
Post a Comment for "Text Doesn't Appear In DOM Object?"