I'm having XML file I want to read and modify XML data using JavaScript, this is my XML data:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<figlist>
<figgroup name="Circuit Diagram">
<category id="A">
<name>A GENERAL INFORMATION</name>
<subcategory name="GI GENERAL INFORMATION">
<fig id="jtawa5397gb">
<name>CONSULT CHECKING SYSTEM</name>
<svgfile>jtawa5397gb.svg</svgfile>
</fig>
</subcategory>
</category >
In this XML data CONSULT CHECKING SYSTEM I want to modify what ever contents inside tag by reading csv file data
For example in CSV file data it will have
CONSULT CHECKING SYSTEM CONSULTAR EL SISTEMA DE CONTROL
like this contents inside the tag it should change according Csv file data, I need to your help to modify this content through JavaScript. Can anybody help me
with regards, yuvaraj