Hi Brad,
I'm talking about a top-level <svg> element in an <html> document.
The equivalent of this:
<html><body>
<div id="d">
<svg id="root"/>
</div>
</body></html>
But where root is created dynamically via JavaScript:
var d = document.getElementById("d")
d.appendChild( document.createElementNS("
http://www.w3.org/2000/svg", "svg") )
This is exactly what Rick's example does at
http://code.google.com/p/svgweb/source/browse/trunk/samples/javascript-samples/svg_dynamic.html
Do you have any idea what form this is likely to take in the future?
i.e. would it just be the same DOM call: createElementNS() or
something else, perhaps the HTML5-ish createElement('svg') though not
sure how you would do that consider the IE DOM already has a
createElement() function. Ok, I'm still largely in the dark about how
your htc / DOM shim works.
I may be able to work around this, but can you give your best ETA? :)
Thanks,
Jeff