Posts by Lucas Cardoso Silva • 1 point
1 post
-
0
votes1
answer124
viewsA: how to remove nodes from an xml file with javascript?
You can do it this way: y = xmlDoc.getElementsByTagName("filme")[0]; xmlDoc.documentElement.removeChild(y); To remove the first movie from your list. Source:…