How to check if an embedded SVG document is loaded in an html page? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T08:02:45Zhttp://stackoverflow.com/feeds/question/337293http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/337293/how-to-check-if-an-embedded-svg-document-is-loaded-in-an-html-page1How to check if an embedded SVG document is loaded in an html page?alexmeia2008-12-03T14:29:55Z2008-12-03T16:26:30Z
<p>I need to edit (using javascript) an SVG document embedded in an html page.</p>
<p>When the SVG is loaded, I can access the dom of the SVG and its elements. But I am not able to know if the SVG dom is ready or not, so I cant' perform default actions on the SVG when the html page is loaded.</p>
<p>To access the SVG dom, I use this code:</p>
<pre><code>var svg = document.getElementById("chart").getSVGDocument();
</code></pre>
<p>where "chart" is the id of the embed element.</p>
<p>If I try to access the SVG when the html document is ready, in this way:</p>
<pre><code>jQuery(document).ready( function() {
var svg = document.getElementById("chart").getSVGDocument();
...
</code></pre>
<p>svg is always null. I just need to know when it is not null, so I can start manipulate it.
Do you know if there is a way to do it?</p>
http://stackoverflow.com/questions/337293/how-to-check-if-an-embedded-svg-document-is-loaded-in-an-html-page/337319#3373190Answer by Mocky for How to check if an embedded SVG document is loaded in an html page?Mocky2008-12-03T14:37:32Z2008-12-03T14:37:32Z<p>You can assign an onload event handler to an element within your SVG document and have it call a javascript function in the html page. onload maps to SVGLoad.</p>
<p><a href="http://www.w3.org/TR/SVG11/interact.html#LoadEvent" rel="nofollow">http://www.w3.org/TR/SVG11/interact.html#LoadEvent</a></p>
<blockquote>
<p>The event is triggered at the point at which the user agent has fully parsed the element and its descendants and is ready to act appropriately upon that element</p>
</blockquote>
http://stackoverflow.com/questions/337293/how-to-check-if-an-embedded-svg-document-is-loaded-in-an-html-page/337383#3373831Answer by Mocky for How to check if an embedded SVG document is loaded in an html page?Mocky2008-12-03T14:53:50Z2008-12-03T14:53:50Z<p>You could try polling every so often.</p>
<pre><code>function checkReady() {
var svg = document.getElementById("chart").getSVGDocument();
if (svg == null) {
setTimeout("checkReady()", 300);
} else {
...
}
}
</code></pre>