Text tooltips in SVG
by getvictor
HTML
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="100" height="100">
<rect width="100" height="100" style="fill:black;stroke-width:0"></rect>
<text id="text1" x="50" y="15" text-anchor="end">text1</text>
<text id="text2" x="80" y="15" text-anchor="end"
transform="translate(0,50)">text2</text>
</svg>
CSS
text {
fill:white
}
JavaScript
$('#text1').attr('title', 'Tooltip 1');
$('#text2').attr('title', 'Tooltip 2');