I want to load an image file inside of an SVG-. It works well in Firefox and IE but for some reason not in Chrome.
svgItem.setAttribute("xlink:href", "http://link/to.png");
Is there some workarround?
I want to load an image file inside of an SVG-. It works well in Firefox and IE but for some reason not in Chrome.
svgItem.setAttribute("xlink:href", "http://link/to.png");
Is there some workarround?
setAttributeNS does the Job!
svgItem.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href", "http://link/to.png");