I have an HTML page with SVG diplayed as an img.
This page changes the displayed SVG file using d3: d3.select('img').attr('src', 'newFile.svg');
In other pages, I link to this HTML file and open it using window.open(...) which displays it with the "default" SVG file. Is there a way to set ('img').attr('src','...') from these other pages so that the required image is displayed instead?