I’ve been looking for the solution to convert or extract the svg from a url link svg file to html as original from the link.
e.g.
https://server/soccerball.svg (image url from server that has svg components inside with its paths etc.)
I would like to get the element from inside the link following with its paths and attributes on every elements from the link above in JavaScript. It can be in a form of actual element/string it wont matter.
For example from the link above converted to:
<svg attr…>…
Thanks in advance!