Hi everybody,
Description of issue 1
When I am updating href attribute of images inside a svg image, nothing show up on IE but it works on Firefox and Chrome.
Ex :
$('#toto', svg.root()).
attr('xlink:href', '/images/toto.png');
Description of issue 2
I can't catch click event of images inside a svg image on IE but it works on Firefox and Chrome.
Ex :
$('#toto', svg.root())
.on('click', function() { alert('toto');
});
Thanks