Hello,
this is not a special inkscape question but maybe someone can help me anyhow.
The following code snippet does not work in IE8. (http://www.selfsvg.info/content/listings/a_example.svg) An SVG element (black circle) is configured with a hyperlink. The link does not open when cklicking the svg element. I use the Adobe SVG plugin. It only works when using a frame structure and the target points to an existing frame. Any idea what the problem could be and how to solve it ?
<?xml version="1.0"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <a xlink:href="http://www.w3.org" target="_blank"> <circle cx="20" cy="20" r="15" /> </a> </svg>
... Jens