+ 4
What's wrong with appending circle to svg?
Why circle isn't appended to svg? Please help https://code.sololearn.com/W2H6oFyuF4kl
4 odpowiedzi
+ 2
The circle exists. It's just hidden because it has an ending tag.
Use this to create new element.
var circ = document.createElementNS("http://www.w3.org/2000/svg", 'circle');
+ 6
Thanks very much!
+ 5
It helped me to make this:
https://code.sololearn.com/W5ww62HoKdQ7/?ref=app
0
Wow you're fast. I like it