I have a webpage that has an SVG <svg id='graph'>...</svg> window.
I would like to give the user the opportunity to zoom in on the SVG window.
I use for this document.getElementById("graph").currentScale*=2; if I want to double the size of the field, for example.
The problem is that all windows change, even HTML elements outside the field.
Do you know the origin of this problem?
source share