I embedded an svg within an html file like so:
<embed src="mysvg.svg" type="image/svg+xml" />
within the svg file is a rectangle with an id "lot1a," is there any way i can obtain coordinates of lot1a and save it in a variable and use it as coordinates for another svg file. My main problem is that, as Phrogz said, the host HTML (or SVG) cannot access the DOM of an embedded file. So what can i do?