I have a website that consists of three SVGs. I am now looking to connect elements in these different SVGs by drawing simple lines between them.
My goal is to create a line from element1 (#element1) in svg1 to element6 in svg2.
Unfortunately, I am unable to merge all the SVGs together into one SVG object because each SVG is loaded dynamically and contains unique images.
As a result, I need to draw on the clean HTML DOM. Is this achievable?