jQuery SVG and IE

jQuery SVG and IE

Hi everybody,

Using jQuery SVG plugin (ref  http://keith-wood.name/svg.html ).

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