Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
I don't know if jQuery can do this itself natively, but a quick Google search produced this plugin that might do the trick: keith-wood.name/svg.html – Ashley Sheridan Jan 17 at 10:29
Thank you! I've also checked this thing out but it seems very unsual and complicated for me. – Kremchik Jan 17 at 12:47

1 Answer

up vote 4 down vote accepted

It will show up as a separate document, similar to an iframe. You can access it like this:

var svg = document.getElementById(‘graphics’).contentDocument

Note that it is important to wait until the svg file is loaded; you might want to put your code in the object element’s onload event handler, like this:

<object data="graphics.svg" type="image/svg+xml" id="graphics" />
<script>
  document.getElementById(‘graphics’).addEventListener(‘load’,function(){
    var svg = document.getElementById(‘graphics’).contentDocument
    // do stuff, call functions, etc.
  })
</script>
share|improve this answer
Thank you! I saw this snippet when tried to search for the answer. Now I see it really works but I can not check if SVG object is loaded. Do I have to put something like $('#graphics').load(function() { /* ... */ }? – Kremchik Jan 17 at 10:49
yes, that should work. I edited with a plain javascript example, but that should work for jQuery. – Mark Hubbart Jan 17 at 10:55
Hmm... $('#graphics')[0].addEventListener('load', function(){}) works, but $('#graphics').load(function(){}) does not... I saw your final snippet while googling the solution but I did not try it exactly - that is where I made a mistake. – Kremchik Jan 17 at 12:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.