modeifying the value of the node
how to update the value if the node
<filter>dofilter</filter>
inthe place of dofilter i have to changed to dofill
i have used setNodeValue("dofill");
but no use
for creating above element i have used
Element e= document.createElement("filter");
Text val= document.createTextNode("dofilter");
and add these two elements to main element
how to modify this.please tell me

