I try to update an XML value and save the XML with Filesystem, how i can do that ? Thanks for help. I try : my_xml.documentElement.getElementsByTagName("maj").item(0).setNodeValue("new value"); and : my_xml.documentElement.getElementsByTagName("maj").item(0).nodeValue = "new value";
But don't work