up vote 3 down vote favorite
2
share [g+] share [fb]

I need to edit (using javascript) an SVG document embedded in an html page.

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.

To access the SVG dom, I use this code:

var svg = document.getElementById("chart").getSVGDocument();

where "chart" is the id of the embed element.

If I try to access the SVG when the html document is ready, in this way:

jQuery(document).ready( function() {
var svg = document.getElementById("chart").getSVGDocument();
...

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?

link|improve this question

40% accept rate
removed embedded tag – Ilya Dec 3 '08 at 16:26
feedback

4 Answers

up vote 0 down vote accepted

You could try polling every so often.

function checkReady() {
    var svg = document.getElementById("chart").getSVGDocument();
    if (svg == null) {
        setTimeout("checkReady()", 300);
    } else {
        ...
    }
}
link|improve this answer
Yes, it works. Didn't think about the timeout solution... Thanks man. – alexmeia Dec 3 '08 at 15:15
1  
Polling is not a good way of doing this. Use a 'load' event listener instead. – Erik Dahlström Aug 18 '10 at 9:09
feedback

On your embedding element (e.g 'embed', 'object', 'iframe') in the main document add an onload attribute which calls your function, or add the event listener in script, e.g embeddingElm.addEventListener('load', callbackFunction, false). Another option might be to listen for DOMContentLoaded, depends on what you want it for.

You can also add a load listener on the main document. jQuery(document).ready doesn't mean that all resources are loaded, just that the document itself has a DOM that is ready for action. However note that if you listen for load on the entire document your callback function won't be called until all resources in that document are loaded, css, javascript etc.

If you use inline svg, then jQuery(document).ready will work just fine however.

On a further note you might want to consider using embeddingElm.contentDocument (if available) instead of embeddingElm.getSVGDocument().

link|improve this answer
feedback

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.

http://www.w3.org/TR/SVG11/interact.html#LoadEvent

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

link|improve this answer
No, I can't edit the SVG document. I just can manipulate it when is in the web page. – alexmeia Dec 3 '08 at 14:40
feedback

Using jQuery you can bind to the window load event Erik mentions with:

$(window).load(function(){
    var svg = document.getElementById("chart").getSVGDocument();
});
link|improve this answer
I think in this way you can know when the SVG object is loaded in the html page, but you still don't know if the DOM of the SVG is ready. – alexmeia Nov 24 '10 at 15:25
feedback

Your Answer

 
or
required, but never shown

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