Is it possible to use the same SVG element twice on a web page without having to load it again?
I am changing the CSS of the SVG using JavaScript, so I believe the SVG must be directly embedded in the HTML rather than included as an object.
Both instances of the SVG need to have identical manipulations, so I want to avoid loading it separately for each one. Is there a way to achieve this?
Thank you, James