Source du fichier SVG
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="400" height="200" onload="cree_texte(evt)">
<script><![CDATA[
function cree_texte(evt)
{
svgdoc=evt.target.ownerDocument;
var node=svgdoc.createElementNS("http://www.w3.org/2000/svg" , "text");
node.setAttributeNS(null , "x" , "50");
node.setAttributeNS(null , "y" , "50");
node.setAttributeNS(null , "text-anchor" , "middle");
node.setAttributeNS(null , ("font-size" , "25");
node.setAttributeNS(null , ("font-family" , "Arial");
node.setAttributeNS(null , ("fill" , "red");
var texte=svgdoc.createTextNode("tra la la");
node.appendChild(texte);
ou=evt.target;
ou.appendChild(node);
}
]]></script>
</svg>