Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

206
Vistas
Remove child node from XML using JavaScript

I am getting some extra node in XML file which need to removed. I can do this simply using XSLT or Map though I want to achieve it using JavaScript. I want to remove the entire <Distributors> and <Location> node from input xml.

Input XML,

<bookstore>
    <book category="cooking">
        <title lang="en">Everyday Italian</title>
        <author>Giada De Laurentiis</author>
        <year>2005</year>
        <price>30.00</price>
    </book>
    <book category="children">
        <title lang="en">Harry Potter</title>
        <author>J K. Rowling</author>
        <year>2005</year>
        <price>29.99</price>
    </book>
    <Location>London</Location>
    <Year>2022</Year>
    <Distributors>
        <Distributor1>Ingram</Distributor1>
        <Distributor2>Amazon</Distributor2>
        <Distributor3>Company</Distributor3>
    </Distributors>
</bookstore>

Expected Output xml

<bookstore>
    <book category="cooking">
        <title lang="en">Everyday Italian</title>
        <author>Giada De Laurentiis</author>
        <year>2005</year>
        <price>30.00</price>
    </book>
    <book category="children">
        <title lang="en">Harry Potter</title>
        <author>J K. Rowling</author>
        <year>2005</year>
        <price>29.99</price>
    </book>
    <Year>2022</Year>
</bookstore>

I tried using DOM but using DOM it's consuming a lot of memory due to size of data. Is there any simple way to achieve it without much resources, otherwise I'll try to split the msg and then will check.

var xmlDoc = xml.responseXML;
var y = xmlDoc.getElementsByTagName("bookstore")[0];
var x = xmlDoc.documentElement.removeChild(y);

Need suggestion from experts here.

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda