I have an svg graphics I insert in my page with embed or object tag:
<object data="graphics.svg" type="image/svg+xml" id="graphics" />
The image loads properly and I can see its SVG structure with browser debugger. I see all the elements ids and attrs but it seems to me there is no way to select those elements with my scripts on page:
$('#graphics path').length; // 0 (jQuery)
$('path').length; // 0 anyway
Is it possible to browse the graphics elements as usual?