Hi Felipe,
> I have a text element in my svg document, and I want to
> change it value.
You could try this:
function replaceText(id, msg) {
var elem = document.getElementById(id);
elem.getFirstChild().setData(msg);
}
Regards,
Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
