Re: Python & DOM
On Mon, 23 May 2005 22:37:09 -0700, [EMAIL PROTECTED] wrote: > textNode = yourDocumentElement.createTextNode("the content") > yourElement.appendChild(textNode) > Thanks, it works, but 'yourDocumentElement' needs to be of type 'document'. The name leads to conclusion that it needs to be a root elem
Re: Python & DOM
textNode = yourDocumentElement.createTextNode("the content") yourElement.appendChild(textNode) /S -- http://mail.python.org/mailman/listinfo/python-list