Working Solution
The main problem is that there is no innerHTML attribute on SVG elements and you need to create all sub nodes yourself. But you can convert your HTML string to styled tspans (without) string parsing magic by creating a temporary DOM object using only this string. After that you can use d3 to create correct tspans elements.
var text = d3.select("#test"), tmp = document.createElement("text"); //create tmp
tmp.innerHTML = 'aaa <tspan style="font-weight:bold">bbb</tspan> ccc' //create HTML children (not yet an SVG!)
var nodes = Array.prototype.slice.call(tmp.childNodes) //create a real array from the childNodes variable
nodes.forEach( function(node) {
text.append("tspan")
.attr("style", node.getAttribute && node.getAttribute("style"))
.text(node.textContent)
})
Remaining Issue: This solution does not support sub nodes in the tspans which would require to traverse the childNodes of the source elements, copy the style (and maybe other properties) from the sub nodes and append new sub tspan elements (and other maybe tags) to the corresponding parent tspans (or other tags). This will eventually result in a a sub tspan compatible parser to solve the case completely.
Edit: There is a more general innerSVG shim that can also handle the sub nodes.
Broken Solutions
There are some other solutions that should work but are currently broken. As others already pointed out, using .html() directly in jQuery or d3 does not work, because they rely on innerHTML.
//not working
$("#test").html(...); d3.select("#test").html(...)
Copy and append (similar to my working solution) via jQuery is also broken. It creates the correct DOM but the tspan is not shown (tried in Firefox and Chrome):
//creates correct DOM, but disables/hides the created tspan
var tmp = $("<text>")
tmp.html('aaa <tspan style="font-weight:bold">bbb</tspan> ccc')
$("#test").append( Array.prototype.slice.call(tmp[0].childNodes) )
According to the W3C spec, it should be possible to mix tspan's and TextNodes.
d3.select("#test).html('<span>Hi</span>')no? Well actually thats jQuery syntax but otherwise you'll need("#test").innerHTML+=or("#test").element.innerHTML+=. It depends on whatd3.select("#test")returns – EricG Dec 19 '12 at 22:28d3.select("#test").html('aaa <tspan style="font-weight:bold">bbb</tspan> ccc');– EricG Dec 19 '12 at 22:37