Source du fichier SVG

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="400" height="200">
<script><![CDATA[
function change_texte(evt)
{
        svgdoc = evt.target.ownerDocument;
        var objet = svgdoc.getElementById("texte");
        var child = objet.firstChild;
        child.data = "Bravo ...";
}
]]></script>
<g id="affiche">
<text id="texte" x="150" y="50" text-anchor="middle" font-size="25" font-family="Arial" fill="red">Cliquez sur le rectangle</text>
<rect onclick="change_texte(evt)" x="50" y="100" width="100" height="50" fill="green"/>
</g>
</svg>