document.removeChild(node child)

Leigh Dodds ldodds at ingenta.com
Wed Aug 4 10:08:29 BST 1999


> I have a Document object that was instantiated using a DOM
> implementation while parsing an XML file.. whenever I try to remove one
> of the leaves from the Document object, I always receive an exception

At a guess, I think your problem is that you're attempting to remove
the node from the *document* and not from its parent, so try replacing this
line :

>                  document.removeChild(yList.item(y));

with:

Node theParent = yList.item(y) ;
theParent.removeChild(yList.item(y)) ;

You must remove a node from its parent and not the document.

Its also probably worth bearing in mind that NodeLists are 'live' so
that if other parts of your application alter the DOM tree and
add or remove nodes then your node list will alter accordingly.

However I think the above code change should do the trick.

L.




xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)





More information about the Xml-dev mailing list